Debugger: Print segment numbers

This commit is contained in:
Vicki Pfau 2017-05-22 22:07:59 -07:00
parent dae68c2182
commit c4175846d8
1 changed files with 4 additions and 0 deletions

View File

@ -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");