]> git.unchartedbackwaters.co.uk Git - francis/winuae.git/commitdiff
68000/10 MOVEM special case was also incorrectly enabled for 68020/030.
authorToni Wilen <twilen@winuae.net>
Wed, 16 Dec 2020 17:48:57 +0000 (19:48 +0200)
committerToni Wilen <twilen@winuae.net>
Wed, 16 Dec 2020 17:48:57 +0000 (19:48 +0200)
gencpu.cpp

index 185a53b5b2a526e3499ca2f6b1b143e96d654fbb..df6747be2f99ee74ce9d7a00364a87e90a758eb4 100644 (file)
@@ -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);