about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2024-06-02 16:45:00 +0200
committerptitSeb <sebastien.chev@gmail.com>2024-06-02 16:45:35 +0200
commitca63389ea395a0f2baafa50ec7d6a2c71d041602 (patch)
tree1543efcde492e1e4cdc28928f554699373a60af0
parent7b7ee070b948ff5311463c83c3cc024dc1901809 (diff)
downloadbox64-ca63389ea395a0f2baafa50ec7d6a2c71d041602.tar.gz
box64-ca63389ea395a0f2baafa50ec7d6a2c71d041602.zip
[INTERPRETER] Fixed opcode name in comment
-rw-r--r--src/emu/x64runavx660f38.c6
1 files 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;