about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/emu/x64run0f.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/x64run0f.c b/src/emu/x64run0f.c
index 30c89c0b..81167450 100644
--- a/src/emu/x64run0f.c
+++ b/src/emu/x64run0f.c
@@ -69,13 +69,13 @@ int Run0F(x64emu_t *emu, rex_t rex)
             nextop = F8;

             GETEX(0);

             GETGX;

-            memcpy(GX, EX, 16); // unaligned, so carreful

+            GX->u128 = EX->u128;

             break;

         case 0x11:                      /* MOVUPS Ex,Gx */

             nextop = F8;

             GETEX(0);

             GETGX;

-            memcpy(EX, GX, 16); // unaligned, so carreful

+            EX->u128 = GX->u128;

             break;

         case 0x12:                      

             nextop = F8;