removed Cyclone idle debug
authornotaz <notasas@gmail.com>
Sun, 29 Jun 2008 21:19:40 +0000 (21:19 +0000)
committernotaz <notasas@gmail.com>
Sun, 29 Jun 2008 21:19:40 +0000 (21:19 +0000)
git-svn-id: file:///home/notaz/opt/svn/PicoDrive@504 be3aeb3a-fb24-0410-a615-afba39da0efa

Pico/Sek.c

index 001faea..45fa10f 100644 (file)
@@ -202,8 +202,6 @@ static int *idledet_addrs = NULL;
 static int idledet_count = 0, idledet_bads = 0;\r
 int idledet_start_frame = 0;\r
 \r
-static int jump_verify[0x10000];\r
-extern int CycloneJumpTab[];\r
 static unsigned char *rom_verify = NULL;\r
 \r
 void SekInitIdleDet(void)\r
@@ -218,7 +216,6 @@ void SekInitIdleDet(void)
   idledet_count = idledet_bads = 0;\r
   idledet_start_frame = Pico.m.frame_count + 360;\r
 \r
-  memcpy(jump_verify, CycloneJumpTab, 0x10000*4);\r
   rom_verify = realloc(rom_verify, Pico.romsize);\r
   memcpy(rom_verify, Pico.rom, Pico.romsize);\r
 #ifdef EMU_C68K\r
@@ -308,9 +305,6 @@ void SekFinishIdleDet(void)
   if (done_something)\r
   {\r
     int i;\r
-    for (i = 0; i < 0x10000; i++)\r
-      if (jump_verify[i] != CycloneJumpTab[i])\r
-        printf("jumptab corruption @ %04x!\n", i), exit(1);\r
     for (i = 0; i < Pico.romsize; i++)\r
       if (rom_verify[i] != Pico.rom[i])\r
         printf("ROM corruption @ %06x!\n", i), exit(1);\r