mirror of
https://github.com/holub/mame
synced 2025-07-06 18:39:28 +03:00
replaced exit() with fatalerror() in src/emu/cpu/mcs96/mcs96.c (nw)
This commit is contained in:
parent
9871beba3f
commit
e59abd06d0
@ -128,8 +128,7 @@ void mcs96_device::execute_run()
|
|||||||
int picount = inst_state >= 0x200 ? -1 : icount;
|
int picount = inst_state >= 0x200 ? -1 : icount;
|
||||||
do_exec_full();
|
do_exec_full();
|
||||||
if(icount == picount) {
|
if(icount == picount) {
|
||||||
fprintf(stderr, "Unhandled %x (%04x)\n", inst_state, PPC);
|
fatalerror("Unhandled %x (%04x)\n", inst_state, PPC);
|
||||||
exit(0);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
while(bcount && icount <= bcount)
|
while(bcount && icount <= bcount)
|
||||||
|
Loading…
Reference in New Issue
Block a user