From dca79ea10e09c907b9a86fba7cb83d34bfe2a3a6 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sat, 18 Jan 2020 22:52:53 -0500 Subject: [PATCH] Requires trace flag currently set. --- Processors/68000/Implementation/68000Implementation.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Processors/68000/Implementation/68000Implementation.hpp b/Processors/68000/Implementation/68000Implementation.hpp index f04d64020..0f32a4159 100644 --- a/Processors/68000/Implementation/68000Implementation.hpp +++ b/Processors/68000/Implementation/68000Implementation.hpp @@ -273,7 +273,7 @@ template void Proces break; } - if(last_trace_flag_) { + if(trace_flag_ && last_trace_flag_) { // The user has set the trace bit in the status register. active_program_ = nullptr; active_micro_op_ = short_exception_micro_ops_;