PPU/Debugger: View the currently used CR field content in register panel

This commit is contained in:
Eladash 2023-07-12 11:02:12 +03:00 committed by Elad Ashkenazi
parent d153e977a7
commit c0280b43f2
10 changed files with 85 additions and 12 deletions

View file

@ -1093,9 +1093,11 @@ std::shared_ptr<CPUDisAsm> make_disasm(const cpu_thread* cpu);
void cpu_thread::dump_all(std::string& ret) const
{
std::any func_data;
ret += dump_misc();
ret += '\n';
dump_regs(ret);
dump_regs(ret, func_data);
ret += '\n';
ret += dump_callstack();
ret += '\n';
@ -1118,7 +1120,7 @@ void cpu_thread::dump_all(std::string& ret) const
}
}
void cpu_thread::dump_regs(std::string&) const
void cpu_thread::dump_regs(std::string&, std::any&) const
{
}