From c66be063aa30b8ec8e3366fa7767596ef2ecc8bb Mon Sep 17 00:00:00 2001 From: ptitSeb Date: Sun, 23 Jun 2024 20:22:02 +0200 Subject: Small improvment to 0F BC/BD opcodes ([ARM64_DYNAREC] too) --- src/emu/x64run0f.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/emu') diff --git a/src/emu/x64run0f.c b/src/emu/x64run0f.c index 2a2c78cb..8aa634ae 100644 --- a/src/emu/x64run0f.c +++ b/src/emu/x64run0f.c @@ -1543,7 +1543,7 @@ uintptr_t Run0F(x64emu_t *emu, rex_t rex, uintptr_t addr, int *step) } break; case 0xBC: /* BSF Ed,Gd */ - CHECK_FLAGS(emu); + RESET_FLAGS(emu); nextop = F8; GETED(0); GETGD; @@ -1570,7 +1570,7 @@ uintptr_t Run0F(x64emu_t *emu, rex_t rex, uintptr_t addr, int *step) } break; case 0xBD: /* BSR Ed,Gd */ - CHECK_FLAGS(emu); + RESET_FLAGS(emu); nextop = F8; GETED(0); GETGD; -- cgit 1.4.1