lv2: Do not lose r3 data on syscalls

Allows to get the ID of the lv2 sync objects in the debugger by looking at r3's content.
This commit is contained in:
Eladash 2020-03-22 10:35:35 +02:00 committed by Ivan
parent f1cf62ac57
commit dc839e1784
5 changed files with 6 additions and 2 deletions

View file

@ -432,6 +432,7 @@ std::string ppu_thread::dump() const
ret += "Current function: ";
ret += _func;
ret += '\n';
fmt::append(ret, "syscall r3: 0x%llx\n", syscall_r3);
}
else if (is_paused())
{