Added 0F 05 SYSCALL opcode (and test01 works now)

This commit is contained in:
ptitSeb 2021-03-04 20:39:11 +01:00
parent be8204d8fa
commit bae73adf3e

View File

@ -58,6 +58,10 @@ int Run0F(x64emu_t *emu)
switch(opcode) {
case 0x05: /* SYSCALL */
x64Syscall(emu);
break;
case 0x1F: /* NOP (multi-byte) */
nextop = F8;
GETED;