From f49194fc8333634f599cc532b5aabfc3a2be7e16 Mon Sep 17 00:00:00 2001 From: Toni Wilen Date: Fri, 29 Dec 2023 21:45:46 +0200 Subject: [PATCH] Revert part of "Fast 68020+ modes didn't start pending interrupt immediately" fix, only SR modifications must check interrupt immediately. --- newcpu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/newcpu.cpp b/newcpu.cpp index f803237c..0017dd55 100644 --- a/newcpu.cpp +++ b/newcpu.cpp @@ -4582,7 +4582,7 @@ void doint(void) } if (regs.ipl_pin > regs.intmask || currprefs.cachesize) { - if (!currprefs.cachesize) + if (currprefs.cpu_compatible && currprefs.cpu_model < 68020) set_special(SPCFLAG_INT); else set_special(SPCFLAG_DOINT); -- 2.47.3