mirror of
https://github.com/holub/mame
synced 2025-04-22 16:31:49 +03:00
Don't crash on REP NOP [Carl, Alegend45]
This commit is contained in:
parent
e7ffec32f6
commit
2c38dfc436
@ -1211,6 +1211,10 @@ static void I386OP(repeat)(i386_state *cpustate, int invert_flag)
|
||||
flag = &cpustate->ZF;
|
||||
break;
|
||||
|
||||
case 0x90:
|
||||
CYCLES(cpustate,CYCLES_NOP);
|
||||
return;
|
||||
|
||||
default:
|
||||
fatalerror("i386: Invalid REP/opcode %02X combination\n",opcode);
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user