Mark recently-added instructions as handled (#6)

This commit is contained in:
Cacodemon345
2022-09-05 01:38:42 +06:00
committed by GitHub
parent 6b55fa3d2e
commit db6eac6e2f

View File

@@ -1764,6 +1764,8 @@ execx86(int cycs)
set_zf_ex(!(cpu_data & (1 << bit)));
cpu_state.flags &= ~(V_FLAG | C_FLAG);
}
handled = 1;
break;
}
case 0x16: /* NOT1 r8/m8, CL*/
case 0x17: /* NOT1 r16/m16, CL*/
@@ -1781,6 +1783,8 @@ execx86(int cycs)
if (bits == 8) seteab((cpu_data & 0xFF) ^ (1 << bit));
else seteaw((cpu_data & 0xFFFF) ^ (1 << bit));
}
handled = 1;
break;
}
default: {
opcode = orig_opcode;