Previous 199869 Revisions Next

r20330 Saturday 19th January, 2013 at 02:05:54 UTC by David Haywood
this stops vboy crashing here.. I don't know why (nw)
[src/emu/cpu/v810]v810.c

trunk/src/emu/cpu/v810/v810.c
r20329r20330
13141314      debugger_instruction_hook(device, cpustate->PC);
13151315      op=R_OP(cpustate,cpustate->PC);
13161316      cpustate->PC+=2;
1317      cpustate->icount-= OpCodeTable[op>>10](cpustate,op);
1317      int cnt;
1318      cnt = OpCodeTable[op>>10](cpustate,op);
1319      cpustate->icount-= cnt;
13181320   }
13191321}
13201322

Previous 199869 Revisions Next


© 1997-2024 The MAME Team