mirror of
https://github.com/holub/mame
synced 2025-06-23 21:06:38 +03:00
i386: logerror for invalid rep rather than fatal error (nw)
This commit is contained in:
parent
f1ed3b561a
commit
afb373f8fd
@ -1224,8 +1224,9 @@ void i386_device::i386_repeat(int invert_flag)
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
fatalerror("i386: Invalid REP/opcode %02X combination\n",opcode);
|
logerror("i386: Invalid REP/opcode %02X combination at %08x\n",opcode, m_pc - 2);
|
||||||
break;
|
m_pc--;
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if( m_address_size ) {
|
if( m_address_size ) {
|
||||||
|
Loading…
Reference in New Issue
Block a user