mirror of
https://github.com/holub/mame
synced 2025-04-22 16:31:49 +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;
|
||||
do_exec_full();
|
||||
if(icount == picount) {
|
||||
fprintf(stderr, "Unhandled %x (%04x)\n", inst_state, PPC);
|
||||
exit(0);
|
||||
fatalerror("Unhandled %x (%04x)\n", inst_state, PPC);
|
||||
}
|
||||
}
|
||||
while(bcount && icount <= bcount)
|
||||
|
Loading…
Reference in New Issue
Block a user