mirror of
https://github.com/holub/mame
synced 2025-04-24 09:20:02 +03:00
this stops vboy crashing here.. I don't know why (nw)
This commit is contained in:
parent
4c0b0edaad
commit
72f3922fba
@ -1314,7 +1314,9 @@ static CPU_EXECUTE( v810 )
|
||||
debugger_instruction_hook(device, cpustate->PC);
|
||||
op=R_OP(cpustate,cpustate->PC);
|
||||
cpustate->PC+=2;
|
||||
cpustate->icount-= OpCodeTable[op>>10](cpustate,op);
|
||||
int cnt;
|
||||
cnt = OpCodeTable[op>>10](cpustate,op);
|
||||
cpustate->icount-= cnt;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user