diff options
author | K. Richard Pixley <rich@cygnus> | 1993-09-29 23:18:06 +0000 |
---|---|---|
committer | K. Richard Pixley <rich@cygnus> | 1993-09-29 23:18:06 +0000 |
commit | 6cc87fbb7563029232367bb49d4d383156c055c3 (patch) | |
tree | 2062e5e8e05fa3c9c55eaa69e054347ac40940f4 /gas | |
parent | b0dd16a5d451c34aa74ff9e73574399945d56f83 (diff) | |
download | gdb-6cc87fbb7563029232367bb49d4d383156c055c3.zip gdb-6cc87fbb7563029232367bb49d4d383156c055c3.tar.gz gdb-6cc87fbb7563029232367bb49d4d383156c055c3.tar.bz2 |
correct a few mistakes found while extending the dissassembler.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/m88k-opcode.h | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index adbeaef..4659446 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +Wed Sep 29 16:15:11 1993 K. Richard Pixley (rich@sendai.cygnus.com) + + * config/m88k-opcode.h (m88k_opcodes): correct a few mistakes + found while extending the dissassembler. + Tue Sep 28 12:02:04 1993 Stan Shebs (shebs@rtl.cygnus.com) * configure.in: Split i386 LynxOS out from other coff targets, diff --git a/gas/config/m88k-opcode.h b/gas/config/m88k-opcode.h index 39112c1..9f4cb34 100644 --- a/gas/config/m88k-opcode.h +++ b/gas/config/m88k-opcode.h @@ -390,13 +390,13 @@ static struct m88k_opcode m88k_opcodes[] = _MC88xxx (0x48000000, "mask", "d,1,I") _MC88xxx (0x4c000000, "mask.u", "d,1,I") _MC88110 (0x8400c000, "mov.s", "d,x2") - _MC88110 (0x84008200, "mov.s", "xd,2") + _MC88110 (0x84004200, "mov.s", "xd,2") _MC88110 (0x8400c080, "mov.d", "d,x2") - _MC88110 (0x84008280, "mov.d", "xd,2") + _MC88110 (0x84004280, "mov.d", "xd,2") _MC88110 (0x8400c300, "mov", "xd,x2") _MC88xxx (0xf4006c00, "mul", "d,1,2") _MC88xxx (0x6c000000, "mul", "d,1,I") - _MC88xxx (0xf4006c00, "muls", "d,1,2") + _MC88xxx (0xf4006e00, "muls", "d,1,2") _MC88xxx (0x6c000000, "muls", "d,1,I") _MC88xxx (0xf4006c00, "mulu", "d,1,2") /* synonym for mul */ _MC88xxx (0x6c000000, "mulu", "d,1,I") /* synonym for mul */ |