about summary refs log tree commit diff stats
path: root/src/emu
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2021-03-30 21:02:19 +0200
committerptitSeb <sebastien.chev@gmail.com>2021-03-30 21:02:19 +0200
commitaf7bfc7de77d5d5af6c0725d1a68df5eccfc7f85 (patch)
tree94f6e19bc34c3d5a7522392d1cd597ec606fc33a /src/emu
parente3759a5cd071258c56d99ddf9a5b0a140536164d (diff)
downloadbox64-af7bfc7de77d5d5af6c0725d1a68df5eccfc7f85.tar.gz
box64-af7bfc7de77d5d5af6c0725d1a68df5eccfc7f85.zip
Added F2 0F 12 opcode ([DYNAREC] too)
Diffstat (limited to 'src/emu')
-rw-r--r--src/emu/x64runf20f.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/emu/x64runf20f.c b/src/emu/x64runf20f.c
index 18ec9645..44e77a1b 100644
--- a/src/emu/x64runf20f.c
+++ b/src/emu/x64runf20f.c
@@ -53,6 +53,12 @@ int RunF20F(x64emu_t *emu, rex_t rex)
         GETGX;

         EX->q[0] = GX->q[0];

         break;

+    case 0x12:  /* MOVDDUP Gx, Ex */

+        nextop = F8;

+        GETEX(0);

+        GETGX;

+        GX->q[1] = GX->q[0] = EX->q[0];

+        break;

 

     case 0x2A:  /* CVTSI2SD Gx, Ed */

         nextop = F8;