From 2e90a5dbaf28c699dc26dad1574f37886eff8aad Mon Sep 17 00:00:00 2001 From: ptitSeb Date: Thu, 24 Apr 2025 12:07:45 +0200 Subject: [INTERP] Cosmetic change to 0F 1C..1E opcodes --- src/emu/x64run0f.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/emu/x64run0f.c b/src/emu/x64run0f.c index 86d49178..61fa11f4 100644 --- a/src/emu/x64run0f.c +++ b/src/emu/x64run0f.c @@ -576,7 +576,7 @@ uintptr_t Run0F(x64emu_t *emu, rex_t rex, uintptr_t addr, int *step) GETEM(0); GETGM; for (int i=0; i<8; ++i) { - GM->sb[i] = abs(EM->sb[i]); + GM->ub[i] = abs(EM->sb[i]); } break; case 0x1D: /* PABSW Gm, Em */ @@ -584,7 +584,7 @@ uintptr_t Run0F(x64emu_t *emu, rex_t rex, uintptr_t addr, int *step) GETEM(0); GETGM; for (int i=0; i<4; ++i) { - GM->sw[i] = abs(EM->sw[i]); + GM->uw[i] = abs(EM->sw[i]); } break; case 0x1E: /* PABSD Gm, Em */ @@ -592,7 +592,7 @@ uintptr_t Run0F(x64emu_t *emu, rex_t rex, uintptr_t addr, int *step) GETEM(0); GETGM; for (int i=0; i<2; ++i) { - GM->sd[i] = abs(EM->sd[i]); + GM->ud[i] = abs(EM->sd[i]); } break; -- cgit 1.4.1