From ea8edbf0c73d6a2ebe81ae90ec6ef3c957470883 Mon Sep 17 00:00:00 2001 From: folkert van heusden Date: Sat, 25 Jun 2022 08:11:41 +0200 Subject: [PATCH] lbp fix --- debugger.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/debugger.cpp b/debugger.cpp index 66e7076..3d3a36a 100644 --- a/debugger.cpp +++ b/debugger.cpp @@ -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;