From 3ada7276bdbef758500fc7e11abd3f3a27601a17 Mon Sep 17 00:00:00 2001 From: Toni Wilen Date: Thu, 24 Oct 2019 18:52:46 +0300 Subject: [PATCH] 68060 FPU was not marked as disabled if EC model. --- newcpu.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/newcpu.cpp b/newcpu.cpp index 1cb56e24..1365e661 100644 --- a/newcpu.cpp +++ b/newcpu.cpp @@ -3111,6 +3111,9 @@ static void maybe_disable_fpu(void) // disable FPU at reset if no 68060 accelerator board and no $f0 ROM. regs.pcr |= 2; } + if (!currprefs.fpu_model) { + regs.pcr |= 2; + } } static void m68k_reset_sr(void) -- 2.47.3