diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2025-02-12 19:26:44 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2025-02-12 19:26:44 +0100 |
| commit | e2f4ab7700d8fc4432131b27a53fb427243ca1ae (patch) | |
| tree | 9f9729a8b0e8d0d00506b4cd5de8fbd4f67a3f58 /src | |
| parent | 84982ff86f1288871048c4718d680a709360398e (diff) | |
| download | box64-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.c | 1 |
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);} |