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;
|
||||
|
||||
default:
|
||||
fatalerror("i386: Invalid REP/opcode %02X combination\n",opcode);
|
||||
break;
|
||||
logerror("i386: Invalid REP/opcode %02X combination at %08x\n",opcode, m_pc - 2);
|
||||
m_pc--;
|
||||
return;
|
||||
}
|
||||
|
||||
if( m_address_size ) {
|
||||
|
Loading…
Reference in New Issue
Block a user