mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
DSPCodeUtil: Include the PC and hex in the "Extra code words" section
It's included in the section before, so it's helpful to supply here too.
This commit is contained in:
@ -115,7 +115,7 @@ bool Compare(const std::vector<u16>& code1, const std::vector<u16>& code2)
|
||||
u16 pc = i;
|
||||
std::string line;
|
||||
disassembler.DisassembleOpcode(longest, &pc, line);
|
||||
fmt::print("!! {}\n", line);
|
||||
fmt::print("!! {:04x} : {:04x} - {}\n", i, longest[i], line);
|
||||
}
|
||||
}
|
||||
fmt::print("Equal instruction words: {} / {}\n", count_equal, min_size);
|
||||
|
Reference in New Issue
Block a user