mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 23:37:46 -04:00
removed Cyclone idle debug
git-svn-id: file:///home/notaz/opt/svn/PicoDrive@504 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
parent
2100fc9b71
commit
9fd440ab06
1 changed files with 0 additions and 6 deletions
|
@ -202,8 +202,6 @@ static int *idledet_addrs = NULL;
|
|||
static int idledet_count = 0, idledet_bads = 0;
|
||||
int idledet_start_frame = 0;
|
||||
|
||||
static int jump_verify[0x10000];
|
||||
extern int CycloneJumpTab[];
|
||||
static unsigned char *rom_verify = NULL;
|
||||
|
||||
void SekInitIdleDet(void)
|
||||
|
@ -218,7 +216,6 @@ void SekInitIdleDet(void)
|
|||
idledet_count = idledet_bads = 0;
|
||||
idledet_start_frame = Pico.m.frame_count + 360;
|
||||
|
||||
memcpy(jump_verify, CycloneJumpTab, 0x10000*4);
|
||||
rom_verify = realloc(rom_verify, Pico.romsize);
|
||||
memcpy(rom_verify, Pico.rom, Pico.romsize);
|
||||
#ifdef EMU_C68K
|
||||
|
@ -308,9 +305,6 @@ void SekFinishIdleDet(void)
|
|||
if (done_something)
|
||||
{
|
||||
int i;
|
||||
for (i = 0; i < 0x10000; i++)
|
||||
if (jump_verify[i] != CycloneJumpTab[i])
|
||||
printf("jumptab corruption @ %04x!\n", i), exit(1);
|
||||
for (i = 0; i < Pico.romsize; i++)
|
||||
if (rom_verify[i] != Pico.rom[i])
|
||||
printf("ROM corruption @ %06x!\n", i), exit(1);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue