Lay down basic disassembler

This commit is contained in:
SimoneN64
2024-09-23 22:56:44 +02:00
parent d3096609fe
commit 60870165d5
10 changed files with 132 additions and 3 deletions

View File

@@ -21,6 +21,10 @@ void Interpreter::CheckCompareInterrupt() {
}
}
Disassembler::DisassemblyResult Interpreter::Disassemble(u32 address, u32 instruction) const {
return Disassembler::instance().Disassemble(address, instruction);
}
int Interpreter::Step() {
CheckCompareInterrupt();