From: Toni Wilen Date: Wed, 16 Dec 2020 17:48:57 +0000 (+0200) Subject: 68000/10 MOVEM special case was also incorrectly enabled for 68020/030. X-Git-Tag: 4900~236 X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=87a9be1b65a4cc13e3130a4f85cbdb6853b353e6;p=francis%2Fwinuae.git 68000/10 MOVEM special case was also incorrectly enabled for 68020/030. --- 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);