about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2024-01-29 16:58:19 +0100
committerptitSeb <sebastien.chev@gmail.com>2024-01-29 16:58:19 +0100
commit96023f2274c56a53630c686c6dc07744c038c01a (patch)
tree59006f4178d7c13f26029187325143e4f5e30f21 /src
parent30b83f4f9c1cf2e5b62d1b59f9f301f6081d601d (diff)
downloadbox64-96023f2274c56a53630c686c6dc07744c038c01a.tar.gz
box64-96023f2274c56a53630c686c6dc07744c038c01a.zip
[DYNAREC_TEST] Fixed some potential fals-positive on some CMP opcodes
Diffstat (limited to 'src')
-rw-r--r--src/emu/x64run.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/emu/x64run.c b/src/emu/x64run.c
index 938f60b2..77543e08 100644
--- a/src/emu/x64run.c
+++ b/src/emu/x64run.c
@@ -282,13 +282,13 @@ x64emurun:
             break;
         case 0x38:
             nextop = F8;
-            GETEB(0);
+            _GETEB(0);
             GETGB;
             cmp8(emu, EB->byte[0], GB);
             break;
         case 0x39:
             nextop = F8;
-            GETED(0);
+            _GETED(0);
             GETGD;
             if(rex.w)
                 cmp64(emu, ED->q[0], GD->q[0]);
@@ -297,13 +297,13 @@ x64emurun:
             break;
         case 0x3A:
             nextop = F8;
-            GETEB(0);
+            _GETEB(0);
             GETGB;
             cmp8(emu, GB, EB->byte[0]);
             break;
         case 0x3B:
             nextop = F8;
-            GETED(0);
+            _GETED(0);
             GETGD;
             if(rex.w)
                 cmp64(emu, GD->q[0], ED->q[0]);