From 268eb083bb55f10881682668b0600dcbde3cd85f Mon Sep 17 00:00:00 2001 From: Toni Wilen Date: Mon, 1 Jun 2026 21:34:43 +0300 Subject: [PATCH] Fix typo (fixes AND/EOR/OR/MOVE SR + T0 trace tests) --- cputest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cputest.cpp b/cputest.cpp index b3951f28..5ccd1ec0 100644 --- a/cputest.cpp +++ b/cputest.cpp @@ -4498,7 +4498,7 @@ static void execute_ins(uaecptr endpc, uaecptr targetpc, struct instr *dp, bool if (((regs.pc == endpc && feature_interrupts < 2) || (regs.pc == targetpc && feature_interrupts < 2)) && !cpu_stopped) { // Trace is only added as an exception if there was no other exceptions // Trace stacked with other exception is handled later - if (flag_SPCFLAG_DOTRACE && !test_exception && trace_store_pc == 0xffffffffff) { + if (flag_SPCFLAG_DOTRACE && !test_exception && trace_store_pc == 0xffffffff) { Exception(9); break; } -- 2.47.3