about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2025-02-12 19:26:44 +0100
committerptitSeb <sebastien.chev@gmail.com>2025-02-12 19:26:44 +0100
commite2f4ab7700d8fc4432131b27a53fb427243ca1ae (patch)
tree9f9729a8b0e8d0d00506b4cd5de8fbd4f67a3f58 /src
parent84982ff86f1288871048c4718d680a709360398e (diff)
downloadbox64-e2f4ab7700d8fc4432131b27a53fb427243ca1ae.tar.gz
box64-e2f4ab7700d8fc4432131b27a53fb427243ca1ae.zip
[COSIM] Added commented way to dumps regs whe printing a difference
Diffstat (limited to 'src')
-rw-r--r--src/emu/x64test.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/emu/x64test.c b/src/emu/x64test.c
index 974847ab..b7bed1f1 100644
--- a/src/emu/x64test.c
+++ b/src/emu/x64test.c
@@ -30,6 +30,7 @@ void print_banner(x64emu_t* ref)
         ((uint8_t*)ref->old_ip)[0], ((uint8_t*)ref->old_ip)[1], ((uint8_t*)ref->old_ip)[2], ((uint8_t*)ref->old_ip)[3],
         ((uint8_t*)ref->old_ip)[4], ((uint8_t*)ref->old_ip)[5], ((uint8_t*)ref->old_ip)[6], ((uint8_t*)ref->old_ip)[7]
     );
+    //printf_log(LOG_NONE, "%s\n", DumpCPURegs(ref, ref->old_ip, ref->segs[_CS]==0x23));
     printf_log(LOG_NONE, "DIFF: Dynarec |  Interpreter\n----------------------\n");
 }
 #define BANNER if(!banner) {banner=1; print_banner(ref);}