From db6eac6e2f45e16be8a610e260c0f0eef5dd93d5 Mon Sep 17 00:00:00 2001 From: Cacodemon345 Date: Mon, 5 Sep 2022 01:38:42 +0600 Subject: [PATCH] Mark recently-added instructions as handled (#6) --- src/cpu/808x.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/cpu/808x.c b/src/cpu/808x.c index 56afeb391..6ca0845a1 100644 --- a/src/cpu/808x.c +++ b/src/cpu/808x.c @@ -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;