about summary refs log tree commit diff stats
path: root/src/emu
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu')
-rwxr-xr-xsrc/emu/x64run.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/emu/x64run.c b/src/emu/x64run.c
index 5608cc00..19fa56e5 100755
--- a/src/emu/x64run.c
+++ b/src/emu/x64run.c
@@ -472,7 +472,12 @@ x64emurun:
                     ED->dword[0] = GD->dword[0];
             }
             break;
-
+        case 0x8A:                      /* MOV Gb,Eb */
+            nextop = F8;
+            GETEB(0);
+            GETGB;
+            GB = EB->byte[0];
+            break;
         case 0x8B:                      /* MOV Gd,Ed */
             nextop = F8;
             GETED(0);