summaryrefslogtreecommitdiff
path: root/dis.c
diff options
context:
space:
mode:
authorMike Pavone <pavone@retrodev.com>2012-12-08 02:00:54 -0800
committerMike Pavone <pavone@retrodev.com>2012-12-08 02:00:54 -0800
commit0fe3c72239c1bc454965bfe6877307667135bbac (patch)
tree84eaf7aa383791b430730d2a2e4bed2c0d9f9dad /dis.c
parent97d78d6e0c9cebc49ccb61b57d7944db7a739df6 (diff)
Mostly broken VDP core and savestate viewer
Diffstat (limited to 'dis.c')
-rw-r--r--dis.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dis.c b/dis.c
index 4aae55c..af153d3 100644
--- a/dis.c
+++ b/dis.c
@@ -20,7 +20,7 @@ int main(int argc, char ** argv)
{
*cur = (*cur >> 8) | (*cur << 8);
}
- for(cur = filebuf; (cur - filebuf) < (filesize/2); )
+ for(cur = filebuf + 0x100; (cur - filebuf) < (filesize/2); )
{
//printf("cur: %p: %x\n", cur, *cur);
unsigned short * start = cur;