about summary refs log tree commit diff stats
path: root/src/emu
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2024-06-01 15:32:37 +0200
committerptitSeb <sebastien.chev@gmail.com>2024-06-01 15:32:37 +0200
commita79eff3b0da5056e2226b7830aa5089e68c91451 (patch)
treea430971fb908561b39d81ddb185648492eb91423 /src/emu
parenta89d7a2e2a88a10e34293a2aaf7878cd9cce6865 (diff)
downloadbox64-a79eff3b0da5056e2226b7830aa5089e68c91451.tar.gz
box64-a79eff3b0da5056e2226b7830aa5089e68c91451.zip
[ARM64_DYNAREC] Added AVX.F3.0F 10-12/16/2A/2C/2D/58-5F opcodes, plus a few other fixes
Diffstat (limited to 'src/emu')
-rw-r--r--src/emu/x64runavxf30f.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/x64runavxf30f.c b/src/emu/x64runavxf30f.c
index 511463fd..a6cd93d5 100644
--- a/src/emu/x64runavxf30f.c
+++ b/src/emu/x64runavxf30f.c
@@ -63,7 +63,7 @@ uintptr_t RunAVX_F30F(x64emu_t *emu, vex_t vex, uintptr_t addr, int *step)
 
     switch(opcode) {
 
-        case 0x10:  /* VMOVSS Gx Ex */
+        case 0x10:  /* VMOVSS Gx, [Vx,] Ex */
             nextop = F8;
             GETEX(0);
             GETGX;
@@ -78,7 +78,7 @@ uintptr_t RunAVX_F30F(x64emu_t *emu, vex_t vex, uintptr_t addr, int *step)
             GETGY;
             GY->u128 = 0;
             break;
-        case 0x11:  /* MOVSS Ex Gx */
+        case 0x11:  /* VMOVSS Ex, [Vx,] Gx */
             nextop = F8;
             GETEX(0);
             GETGX;