diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2025-04-26 10:12:28 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2025-04-26 10:12:28 +0200 |
| commit | 6796b9ca02405523d790857eebcfafc04e6486e8 (patch) | |
| tree | 2778e7230e5f56d57901ea6b7e0323d1411c5ab3 /src/emu | |
| parent | e4da025dc00257b2b6ad1f5d97df7960e80bcf0e (diff) | |
| download | box64-6796b9ca02405523d790857eebcfafc04e6486e8.tar.gz box64-6796b9ca02405523d790857eebcfafc04e6486e8.zip | |
[WRAPPER] Added some missing function to wrapped libgio-2 (for #2575)
Diffstat (limited to 'src/emu')
| -rw-r--r-- | src/emu/x64printer.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/emu/x64printer.c b/src/emu/x64printer.c index 733563d1..34168211 100644 --- a/src/emu/x64printer.c +++ b/src/emu/x64printer.c @@ -2861,6 +2861,10 @@ void x64Print(x64emu_t* emu, char* buff, size_t buffsz, const char* func, int ti snprintf(buff, buffsz, "%04d|%p: Calling %s(%" PRIp ", %" PRIu32 ", %" PRIi32 ", %" PRIi64 ", %" PRIi64 ")", tid, *(void**)(R_RSP), func, (void*)R_RDI, (uint32_t)R_RSI, (int32_t)R_RDX, (intptr_t)R_RCX, (intptr_t)R_R8); } else if (w == vFpuipp) { snprintf(buff, buffsz, "%04d|%p: Calling %s(%" PRIp ", %" PRIu32 ", %" PRIi32 ", %" PRIp ", %" PRIp ")", tid, *(void**)(R_RSP), func, (void*)R_RDI, (uint32_t)R_RSI, (int32_t)R_RDX, (void*)R_RCX, (void*)R_R8); + } else if (w == vFpuipV) { + snprintf(buff, buffsz, "%04d|%p: Calling %s(%" PRIp ", %" PRIu32 ", %" PRIi32 ", %" PRIp ", %" PRIp ")", tid, *(void**)(R_RSP), func, (void*)R_RDI, (uint32_t)R_RSI, (int32_t)R_RDX, (void*)R_RCX, (void*)(R_RSP + 8)); + } else if (w == vFpuipA) { + snprintf(buff, buffsz, "%04d|%p: Calling %s(%" PRIp ", %" PRIu32 ", %" PRIi32 ", %" PRIp ", %" PRIp ")", tid, *(void**)(R_RSP), func, (void*)R_RDI, (uint32_t)R_RSI, (int32_t)R_RDX, (void*)R_RCX, (void*)R_R8); } else if (w == vFpuuuu) { snprintf(buff, buffsz, "%04d|%p: Calling %s(%" PRIp ", %" PRIu32 ", %" PRIu32 ", %" PRIu32 ", %" PRIu32 ")", tid, *(void**)(R_RSP), func, (void*)R_RDI, (uint32_t)R_RSI, (uint32_t)R_RDX, (uint32_t)R_RCX, (uint32_t)R_R8); } else if (w == vFpuuup) { |