about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--src/emu/x64runf30f.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/emu/x64runf30f.c b/src/emu/x64runf30f.c
index e712d362..efbce036 100644
--- a/src/emu/x64runf30f.c
+++ b/src/emu/x64runf30f.c
@@ -76,6 +76,13 @@ int RunF30F(x64emu_t *emu, rex_t rex)
         GX->d[0] = EX->f[0];

         break;

 

+    case 0x6F:  /* MOVDQU Gx, Ex */

+        nextop = F8;

+        GETEX;

+        GETGX;

+        memcpy(GX, EX, 16);    // unaligned...

+        break;

+

     default:

         return 1;

     }