From: Toni Wilen Date: Mon, 1 Jun 2026 18:34:43 +0000 (+0300) Subject: Fix typo (fixes AND/EOR/OR/MOVE SR + T0 trace tests) X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=268eb083bb55f10881682668b0600dcbde3cd85f;p=francis%2Fwinuae.git Fix typo (fixes AND/EOR/OR/MOVE SR + T0 trace tests) --- 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; }