m68k: Require m68020up rather than m68000up for CHK.L instruction.

* m68k-opc.c (chkl): Change minimum architecture requirement to
	m68020.
This commit is contained in:
Fredrik Noring 2021-01-07 14:44:27 +00:00 committed by Nick Clifton
parent 959d6a673e
commit 3b288c8e2e
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2021-01-07 Fredrik Noring <noring@nocrew.org>
* m68k-opc.c (chkl): Change minimum architecture requirement to
m68020.
2021-01-07 Philipp Tomsich <prt@gnu.org> 2021-01-07 Philipp Tomsich <prt@gnu.org>
* riscv-opc.c (riscv_opcodes): Add pause hint instruction. * riscv-opc.c (riscv_opcodes): Add pause hint instruction.

View File

@ -235,7 +235,7 @@ const struct m68k_opcode m68k_opcodes[] =
{"chk2w", 4, two(0001300,0004000), two(0177700,07777), "!sR1", m68020up | cpu32 | fido_a }, {"chk2w", 4, two(0001300,0004000), two(0177700,07777), "!sR1", m68020up | cpu32 | fido_a },
{"chk2l", 4, two(0002300,0004000), two(0177700,07777), "!sR1", m68020up | cpu32 | fido_a }, {"chk2l", 4, two(0002300,0004000), two(0177700,07777), "!sR1", m68020up | cpu32 | fido_a },
{"chkl", 2, one(0040400), one(0170700), ";lDd", m68000up }, {"chkl", 2, one(0040400), one(0170700), ";lDd", m68020up },
{"chkw", 2, one(0040600), one(0170700), ";wDd", m68000up }, {"chkw", 2, one(0040600), one(0170700), ";wDd", m68000up },
#define SCOPE_LINE (0x1 << 3) #define SCOPE_LINE (0x1 << 3)