about summary refs log tree commit diff stats
path: root/src/emu/x64run.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/x64run.c')
-rwxr-xr-xsrc/emu/x64run.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/emu/x64run.c b/src/emu/x64run.c
index 482c9518..b3ccd541 100755
--- a/src/emu/x64run.c
+++ b/src/emu/x64run.c
@@ -168,6 +168,16 @@ x64emurun:
             --R_RIP;
             break;
 
+        case 0x89:                    /* MOV Ed,Gd */
+            nextop = F8;
+            GETED;
+            GETGD;
+            if(rex.w)
+                ED->q[0] = GD->q[0];
+            else
+                ED->dword[0] = GD->dword[0];
+            break;
+
         default:
             unimp = 1;
             goto fini;