From ca63389ea395a0f2baafa50ec7d6a2c71d041602 Mon Sep 17 00:00:00 2001 From: ptitSeb Date: Sun, 2 Jun 2024 16:45:00 +0200 Subject: [INTERPRETER] Fixed opcode name in comment --- src/emu/x64runavx660f38.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/emu/x64runavx660f38.c b/src/emu/x64runavx660f38.c index 6a2dec79..922e4a1a 100644 --- a/src/emu/x64runavx660f38.c +++ b/src/emu/x64runavx660f38.c @@ -607,7 +607,7 @@ uintptr_t RunAVX_660F38(x64emu_t *emu, vex_t vex, uintptr_t addr, int *step) GY->u128 = EX->u128; break; - case 0x1C: /* PABSB Gx, Ex */ + case 0x1C: /* VPABSB Gx, Ex */ nextop = F8; GETEX(0); GETGX; @@ -623,7 +623,7 @@ uintptr_t RunAVX_660F38(x64emu_t *emu, vex_t vex, uintptr_t addr, int *step) } else GY->u128 = 0; break; - case 0x1D: /* PABSW Gx, Ex */ + case 0x1D: /* VPABSW Gx, Ex */ nextop = F8; GETEX(0); GETGX; @@ -639,7 +639,7 @@ uintptr_t RunAVX_660F38(x64emu_t *emu, vex_t vex, uintptr_t addr, int *step) } else GY->u128 = 0; break; - case 0x1E: /* PABSD Gx, Ex */ + case 0x1E: /* VPABSD Gx, Ex */ nextop = F8; GETEX(0); GETGX; -- cgit 1.4.1