From a84d9a2a3a6bd6d59fc190e004b2cfb65deaaa0d Mon Sep 17 00:00:00 2001 From: folkert van heusden Date: Sun, 12 Mar 2023 10:20:47 +0100 Subject: [PATCH] make log more readable --- debugger.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/debugger.cpp b/debugger.cpp index cdfe0fe..bc9ec4d 100644 --- a/debugger.cpp +++ b/debugger.cpp @@ -308,6 +308,9 @@ void debugger(console *const cnsl, bus *const b, std::atomic_uint32_t *const sto *cnsl->get_running_flag() = true; while(*stop_event == EVENT_NONE) { + if (!single_step) + DOLOG(debug, false, "---"); + c->step_a(); if (trace_start_addr != -1 && c->getPC() == trace_start_addr)