- [NEW] [ui] printhline() printvline()
- [NEW] stubs de debug en subsistemes - [NEW] [debugger] ruta de branches visibles en el desensamblat - [NEW] informació completa sobre opcodes, instruccions... en 6502_opcodes
This commit is contained in:
@@ -28,4 +28,15 @@ namespace mem
|
||||
tia::write(address, value);
|
||||
}
|
||||
|
||||
namespace debug
|
||||
{
|
||||
const memDebugInfo getInfo(uint16_t address)
|
||||
{
|
||||
const uint16_t masked = address & 0x1fff;
|
||||
if (masked & 0x1000) return rom::debug::getInfo(address);
|
||||
if (masked & 0x0080) return pia::debug::getInfo(address);
|
||||
return tia::debug::getInfo(address);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user