about summary refs log tree commit diff stats
path: root/src/emu
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2021-03-18 10:33:43 +0100
committerptitSeb <sebastien.chev@gmail.com>2021-03-18 10:33:43 +0100
commit6547166c2d7b7b09e879c2a2ff9e2e6bced08367 (patch)
tree69ee722a9c8a8b18ef3f3da26527b09663aabcb2 /src/emu
parent5a07587437722c1e72d12022774613c9c8e52b45 (diff)
downloadbox64-6547166c2d7b7b09e879c2a2ff9e2e6bced08367.tar.gz
box64-6547166c2d7b7b09e879c2a2ff9e2e6bced08367.zip
Added 8A opcode
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);