This commit is contained in:
folkert van heusden 2022-06-25 08:11:41 +02:00
parent 42fc44b206
commit ea8edbf0c7

View file

@ -160,10 +160,10 @@ void debugger(console *const cnsl, bus *const b, std::atomic_uint32_t *const sto
cnsl->put_string_lf("Breakpoints:");
for(auto pc : bps) {
cnsl->put_string_lf(format(" %06o", pc));
for(auto a : bps) {
cnsl->put_string(format(" %06o> ", a));
pc += disassemble(c, cnsl, pc, true);
disassemble(c, cnsl, a, true);
}
continue;