mirror of https://github.com/mgba-emu/mgba.git
Debugger: Print segment numbers
This commit is contained in:
parent
dae68c2182
commit
c4175846d8
|
@ -137,6 +137,10 @@ static void _disassemble(struct CLIDebugger* debugger, struct CLIDebugVector* dv
|
|||
|
||||
static void _print(struct CLIDebugger* debugger, struct CLIDebugVector* dv) {
|
||||
for (; dv; dv = dv->next) {
|
||||
if (dv->segmentValue >= 0) {
|
||||
debugger->backend->printf(debugger->backend, " $%02X:%04X", dv->segmentValue, dv->intValue);
|
||||
continue;
|
||||
}
|
||||
debugger->backend->printf(debugger->backend, " %u", dv->intValue);
|
||||
}
|
||||
debugger->backend->printf(debugger->backend, "\n");
|
||||
|
|
Loading…
Reference in New Issue