From 093cfdeb0cc134207387d6367b3da0c92ba4cc34 Mon Sep 17 00:00:00 2001 From: folkert van heusden Date: Sun, 26 Mar 2023 11:23:39 +0200 Subject: [PATCH] run_bic: always only log disassembly to file --- debugger.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debugger.cpp b/debugger.cpp index 43a7bd1..c439a58 100644 --- a/debugger.cpp +++ b/debugger.cpp @@ -511,7 +511,7 @@ void run_bic(console *const cnsl, bus *const b, std::atomic_uint32_t *const stop c->step_a(); if (tracing) - disassemble(c, cnsl, c->getPC(), false); + disassemble(c, nullptr, c->getPC(), false); c->step_b(); }