about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2021-03-06 10:27:15 +0100
committerptitSeb <sebastien.chev@gmail.com>2021-03-06 10:27:15 +0100
commit7aca60904076314e45d6f6b6916fc22358e93640 (patch)
tree57ddcc9badd99f284bd60d053fb089b3722f5597 /src
parentaed9ebd7d66fb3c4e9954c5d0759c2446b820ed3 (diff)
downloadbox64-7aca60904076314e45d6f6b6916fc22358e93640.tar.gz
box64-7aca60904076314e45d6f6b6916fc22358e93640.zip
Added REX 84 opcode
Diffstat (limited to 'src')
-rwxr-xr-xsrc/emu/x64run.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/emu/x64run.c b/src/emu/x64run.c
index 10f4c9f2..ec88fab1 100755
--- a/src/emu/x64run.c
+++ b/src/emu/x64run.c
@@ -313,6 +313,12 @@ x64emurun:
             }
             break;
 
+        case 0x84:                      /* TEST Eb,Gb */
+            nextop = F8;
+            GETEB;
+            GETGB;
+            test8(emu, EB->byte[0], GB);
+            break;
         case 0x85:                      /* TEST Ed,Gd */
             nextop = F8;
             GETED;