diff options
author | Ian Lance Taylor <ian@airs.com> | 1997-09-24 23:03:55 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1997-09-24 23:03:55 +0000 |
commit | f849a33ee3b1d189e42ea8d10e8a4f7ee6ffbfa4 (patch) | |
tree | 72c63a2b7c4e20feb4b667151958b5f052c6d51b /opcodes/m68k-opc.c | |
parent | 469adf23a15a81b7c3948fb54c3703754607e96c (diff) | |
download | gdb-f849a33ee3b1d189e42ea8d10e8a4f7ee6ffbfa4.zip gdb-f849a33ee3b1d189e42ea8d10e8a4f7ee6ffbfa4.tar.gz gdb-f849a33ee3b1d189e42ea8d10e8a4f7ee6ffbfa4.tar.bz2 |
* m68k-opc.c: Correct bchg, bclr, bset, and btst on ColdFire.
Diffstat (limited to 'opcodes/m68k-opc.c')
-rw-r--r-- | opcodes/m68k-opc.c | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/opcodes/m68k-opc.c b/opcodes/m68k-opc.c index 00a1052..87ca0cd 100644 --- a/opcodes/m68k-opc.c +++ b/opcodes/m68k-opc.c @@ -175,10 +175,13 @@ const struct m68k_opcode m68k_opcodes[] = {"jle", one(0067400), one(0177400), "Bg", m68000up | mcf5200 }, {"bchg", one(0000500), one(0170700), "Dd$s", m68000up | mcf5200 }, -{"bchg", one(0004100), one(0177700), "#b$s", m68000up | mcf5200 }, +{"bchg", one(0004100), one(0177700), "#b$s", m68000up }, +{"bchg", one(0004100), one(0177700), "#bqs", mcf5200 }, -{"bclr", one(0000600), one(0170700), "Dd$s", m68000up | mcf5200 }, -{"bclr", one(0004200), one(0177700), "#b$s", m68000up | mcf5200 }, +{"bclr", one(0000600), one(0170700), "Dd$s", m68000up }, +{"bclr", one(0000600), one(0170700), "Ddvs", mcf5200 }, +{"bclr", one(0004200), one(0177700), "#b$s", m68000up }, +{"bclr", one(0004200), one(0177700), "#bqs", mcf5200 }, {"bfchg", two(0165300, 0), two(0177700, 0170000), "?sO2O3", m68020up }, {"bfclr", two(0166300, 0), two(0177700, 0170000), "?sO2O3", m68020up }, @@ -197,15 +200,18 @@ const struct m68k_opcode m68k_opcodes[] = {"bral", one(0060377), one(0177777), "BL", m68020up | cpu32 }, {"bras", one(0060000), one(0177400), "BB", m68000up | mcf5200 }, -{"bset", one(0000700), one(0170700), "Dd$s", m68000up | mcf5200 }, -{"bset", one(0004300), one(0177700), "#b$s", m68000up | mcf5200 }, +{"bset", one(0000700), one(0170700), "Dd$s", m68000up }, +{"bset", one(0000700), one(0170700), "Ddvs", mcf5200 }, +{"bset", one(0004300), one(0177700), "#b$s", m68000up }, +{"bset", one(0004300), one(0177700), "#bqs", mcf5200 }, {"bsrw", one(0060400), one(0177777), "BW", m68000up | mcf5200 }, {"bsrl", one(0060777), one(0177777), "BL", m68020up | cpu32 }, {"bsrs", one(0060400), one(0177400), "BB", m68000up | mcf5200 }, {"btst", one(0000400), one(0170700), "Dd@s", m68000up | mcf5200 }, -{"btst", one(0004000), one(0177700), "#b@s", m68000up | mcf5200 }, +{"btst", one(0004000), one(0177700), "#b@s", m68000up }, +{"btst", one(0004000), one(0177700), "#bqs", mcf5200 }, {"callm", one(0003300), one(0177700), "#b!s", m68020 }, |