Debugger: Fixed SPC debugger not showing the disassembled code
This commit is contained in:
parent
1f620b2652
commit
b671d9f26c
1 changed files with 5 additions and 1 deletions
|
@ -273,8 +273,12 @@ void Disassembler::Disassemble(CpuType cpuType)
|
|||
maxAddr = _necDspProgramRomSize - 1;
|
||||
break;
|
||||
|
||||
case CpuType::Gameboy:
|
||||
case CpuType::Spc:
|
||||
mappings = nullptr;
|
||||
maxAddr = 0xFFFF;
|
||||
break;
|
||||
|
||||
case CpuType::Gameboy:
|
||||
if(!_gameboy) {
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue