mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 12:19:12 +00:00
Have the disassembler show the PC next to host instructions.
This commit is contained in:
parent
eefe710571
commit
988c4f1de8
2 changed files with 10 additions and 7 deletions
|
@ -10,7 +10,7 @@ class HostDisassembler
|
|||
{
|
||||
public:
|
||||
virtual ~HostDisassembler() {}
|
||||
virtual std::string DisassembleHostBlock(const u8* code_start, const u32 code_size, u32* host_instructions_count) { return "(No disassembler)"; }
|
||||
virtual std::string DisassembleHostBlock(const u8* code_start, const u32 code_size, u32* host_instructions_count, u64 starting_pc) { return "(No disassembler)"; }
|
||||
};
|
||||
|
||||
HostDisassembler* GetNewDisassembler(const std::string& arch);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue