DSPDisassembler: remove unused base_addr parameter

This commit is contained in:
Michael Maltese 2017-05-24 15:20:31 -07:00
parent 2564823522
commit 1d0185d7d5
5 changed files with 11 additions and 12 deletions

View file

@ -23,7 +23,7 @@ static bool RoundTrippableDissassemble(const std::vector<u16>& code, std::string
settings.show_pc = false;
DSP::DSPDisassembler disasm(settings);
return disasm.Disassemble(code, 0x0000, text);
return disasm.Disassemble(code, text);
}
// This test goes from text ASM to binary to text ASM and once again back to binary.