i386: logerror for invalid rep rather than fatal error (nw)

This commit is contained in:
cracyc 2017-01-04 12:16:48 -06:00
parent f1ed3b561a
commit afb373f8fd

View File

@ -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 ) {