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:
Pokechu22 2022-06-13 18:50:42 -07:00
parent 087d89225c
commit 2d774010c3
1 changed files with 1 additions and 1 deletions

View File

@ -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);