diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2024-06-01 14:28:32 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2024-06-01 14:28:32 +0200 |
| commit | a89d7a2e2a88a10e34293a2aaf7878cd9cce6865 (patch) | |
| tree | 1d6b58999917aa3f2b51eff9b8ac946a418c3de0 /src/emu | |
| parent | 0336f6a9872d5c95959a8566d5e0391890761794 (diff) | |
| download | box64-a89d7a2e2a88a10e34293a2aaf7878cd9cce6865.tar.gz box64-a89d7a2e2a88a10e34293a2aaf7878cd9cce6865.zip | |
[ARM64_DYNAREC] Added AVX.F2.0F 10-12/2A/2C/2D opcodes
Diffstat (limited to 'src/emu')
| -rw-r--r-- | src/emu/x64runavxf20f.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/x64runavxf20f.c b/src/emu/x64runavxf20f.c index 3da16c92..b607fc27 100644 --- a/src/emu/x64runavxf20f.c +++ b/src/emu/x64runavxf20f.c @@ -60,7 +60,7 @@ uintptr_t RunAVX_F20F(x64emu_t *emu, vex_t vex, uintptr_t addr, int *step) switch(opcode) { - case 0x10: /* VMOVSD Gx Ex */ + case 0x10: /* VMOVSD Gx, Vx, Ex */ nextop = F8; GETEX(0); GETGX; @@ -74,7 +74,7 @@ uintptr_t RunAVX_F20F(x64emu_t *emu, vex_t vex, uintptr_t addr, int *step) GETGY; GY->u128 = 0; break; - case 0x11: /* VMOVSD Ex Gx */ + case 0x11: /* VMOVSD Ex, Vx, Gx */ nextop = F8; GETEX(0); GETGX; |