about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
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;