From 87a9be1b65a4cc13e3130a4f85cbdb6853b353e6 Mon Sep 17 00:00:00 2001 From: Toni Wilen Date: Wed, 16 Dec 2020 19:48:57 +0200 Subject: [PATCH] 68000/10 MOVEM special case was also incorrectly enabled for 68020/030. --- gencpu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gencpu.cpp b/gencpu.cpp index 185a53b5..df6747be 100644 --- a/gencpu.cpp +++ b/gencpu.cpp @@ -4473,7 +4473,7 @@ static void genmovemel(uae_u16 opcode) if (table68k[opcode].dmode == Aipi) { out("m68k_areg(regs, dstreg) = srca;\n"); } - if (cpu_level <= 3) { + if (cpu_level <= 1) { out("%s(srca);\n", srcw); // and final extra word fetch that goes nowhere.. count_readw++; check_bus_error("src", 0, 0, 1, NULL, 1, 0); -- 2.47.3