PR16995, m68k coldfire emac immediate to macsr incorrect disassembly
authorAlan Modra <amodra@gmail.com>
Thu, 24 Nov 2022 06:54:02 +0000 (17:24 +1030)
committerAlan Modra <amodra@gmail.com>
Thu, 24 Nov 2022 07:15:52 +0000 (17:45 +1030)
Mode/reg bits for these insns are 000 Dy, 001 Ay, and 111 100 for the
move immediate.

* m68k-opc.c (m68k_opcodes): Only accept 000 and 001 as mode
for move reg to macsr/mask insns.

opcodes/m68k-opc.c

index c1165ca5cfc688a240fc1dc6bb757388bd35acb9..2a92d8df54efc692e25fa615b13079d1c1405de8 100644 (file)
@@ -1641,9 +1641,9 @@ const struct m68k_opcode m68k_opcodes[] =
 {"movel", 6,   one(0xa13c),    one(0xf9ff), "#leF", mcfemac }, /* #,ACCx.  */
 {"movel", 2,   one(0xab00),    one(0xfbc0), "Rsg]", mcfemac }, /* Rx,ACCEXTx.  */
 {"movel", 6,   one(0xab3c),    one(0xfbff), "#lg]", mcfemac }, /* #,ACCEXTx.  */
-{"movel", 2,   one(0xa900),    one(0xffc0), "RsG-", mcfemac }, /* Rx,macsr.  */
+{"movel", 2,   one(0xa900),    one(0xfff0), "RsG-", mcfemac }, /* Rx,macsr.  */
 {"movel", 6,   one(0xa93c),    one(0xffff), "#lG-", mcfemac }, /* #,macsr.  */
-{"movel", 2,   one(0xad00),    one(0xffc0), "RsH-", mcfemac }, /* Rx,mask.  */
+{"movel", 2,   one(0xad00),    one(0xfff0), "RsH-", mcfemac }, /* Rx,mask.  */
 {"movel", 6,   one(0xad3c),    one(0xffff), "#lH-", mcfemac }, /* #,mask.  */
 
 {"move", 2,    one(0030000),   one(0170000), "*w%d", m68000up },