about summary refs log tree commit diff stats
path: root/src/emu/x64run670f.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/x64run670f.c')
-rw-r--r--src/emu/x64run670f.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/emu/x64run670f.c b/src/emu/x64run670f.c
index c0283ab5..3627ed93 100644
--- a/src/emu/x64run670f.c
+++ b/src/emu/x64run670f.c
@@ -84,6 +84,12 @@ uintptr_t Run670F(x64emu_t *emu, rex_t rex, int rep, uintptr_t addr)
                     GETGM;
                     GM->q = EM->q;
                     break;
+                case 2:  /* MOVDQU Gx, Ex */
+                    nextop = F8;
+                    GETEX32(0);
+                    GETGX;
+                    memcpy(GX, EX, 16);    // unaligned...
+                    break;
                 default:
                     return 0;
             }