From: Toni Wilen Date: Thu, 24 Oct 2019 15:52:46 +0000 (+0300) Subject: 68060 FPU was not marked as disabled if EC model. X-Git-Tag: 4300~70 X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=3ada7276bdbef758500fc7e11abd3f3a27601a17;p=francis%2Fwinuae.git 68060 FPU was not marked as disabled if EC model. --- 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)