mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-13 18:28:35 +12:00
lv2: Log all arguments of unimplemented syscalls
This commit is contained in:
parent
8f3b04cbd6
commit
921b1aadfb
1 changed files with 3 additions and 1 deletions
|
@ -56,7 +56,9 @@ void fmt_class_string<ppu_syscall_code>::format(std::string& out, u64 arg)
|
||||||
|
|
||||||
static bool null_func(ppu_thread& ppu)
|
static bool null_func(ppu_thread& ppu)
|
||||||
{
|
{
|
||||||
ppu_log.todo("Unimplemented syscall %s -> CELL_OK", ppu_syscall_code(ppu.gpr[11]));
|
ppu_log.todo("Unimplemented syscall %s -> CELL_OK (r3=0x%llx, r4=0x%x, r5=0x%llx, r6=0x%llx, r7=0x%llx, r8=0x%llx, r9=0x%llx, r10=0x%llx)", ppu_syscall_code(ppu.gpr[11]),
|
||||||
|
ppu.gpr[3], ppu.gpr[4], ppu.gpr[5], ppu.gpr[6], ppu.gpr[7], ppu.gpr[8], ppu.gpr[9], ppu.gpr[10]);
|
||||||
|
|
||||||
ppu.gpr[3] = 0;
|
ppu.gpr[3] = 0;
|
||||||
ppu.cia += 4;
|
ppu.cia += 4;
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue