]> xenbits.xensource.com Git - qemu-xen.git/commitdiff
target-m68k: fix bit operation with immediate value
authorLaurent Vivier <laurent@vivier.eu>
Fri, 13 Jan 2017 18:36:29 +0000 (19:36 +0100)
committerLaurent Vivier <laurent@vivier.eu>
Sat, 14 Jan 2017 09:06:21 +0000 (10:06 +0100)
M680x0 bit operations with an immediate value use 9 bits of the 16bit
value, while coldfire ones use only 8 bits.

Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Reviewed-by: Richard Henderson <rth@twiddle.net>
Message-Id: <1484332593-16782-2-git-send-email-laurent@vivier.eu>

target/m68k/translate.c

index 5f7357ebca0ac1113b52271bc29192d78ac3a23f..410f56a05a1f62849e708cbf5a8cccfa1b0fb395 100644 (file)
@@ -1801,9 +1801,16 @@ DISAS_INSN(bitop_im)
     op = (insn >> 6) & 3;
 
     bitnum = read_im16(env, s);
-    if (bitnum & 0xff00) {
-        disas_undef(env, s, insn);
-        return;
+    if (m68k_feature(s->env, M68K_FEATURE_M68000)) {
+        if (bitnum & 0xfe00) {
+            disas_undef(env, s, insn);
+            return;
+        }
+    } else {
+        if (bitnum & 0xff00) {
+            disas_undef(env, s, insn);
+            return;
+        }
     }
 
     SRC_EA(env, src1, opsize, 0, op ? &addr: NULL);