diff options
author | Ian Lance Taylor <ian@airs.com> | 1995-02-16 22:35:36 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1995-02-16 22:35:36 +0000 |
commit | f27ab330416a590e02bc41fe9945658783b31e40 (patch) | |
tree | a47403ae7b6eed435835ee894ccdfc8d6bfdc0b5 /opcodes | |
parent | 4e71f1ae3f17144c708cd445ee1de8c4f0af54b3 (diff) | |
download | gdb-f27ab330416a590e02bc41fe9945658783b31e40.zip gdb-f27ab330416a590e02bc41fe9945658783b31e40.tar.gz gdb-f27ab330416a590e02bc41fe9945658783b31e40.tar.bz2 |
* mips-opc.c: Add r4650 mul instruction.
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/ChangeLog | 4 | ||||
-rw-r--r-- | opcodes/mips-opc.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index a971d25..fd76397 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,7 @@ +Thu Feb 16 17:34:41 1995 Ian Lance Taylor <ian@cygnus.com> + + * mips-opc.c: Add r4650 mul instruction. + Wed Feb 15 15:45:20 1995 Ian Lance Taylor <ian@cygnus.com> * mips-opc.c: Add uld and usd macros for unaligned double load and diff --git a/opcodes/mips-opc.c b/opcodes/mips-opc.c index 91d3130..2719bb0 100644 --- a/opcodes/mips-opc.c +++ b/opcodes/mips-opc.c @@ -413,6 +413,7 @@ const struct mips_opcode mips_opcodes[] = { {"mtlo", "s", 0x00000013, 0xfc1fffff, RD_s|WR_LO }, {"mul.d", "D,V,T", 0x46200002, 0xffe0003f, WR_D|RD_S|RD_T }, {"mul.s", "D,V,T", 0x46000002, 0xffe0003f, WR_D|RD_S|RD_T }, +{"mul", "d,v,t", 0x70000002, 0xfc0007ff, WR_d|RD_s|RD_t|WR_HI|WR_LO|P3}, {"mul", "d,v,t", 0, (int) M_MUL, INSN_MACRO }, {"mul", "d,v,I", 0, (int) M_MUL_I, INSN_MACRO }, {"mulo", "d,v,t", 0, (int) M_MULO, INSN_MACRO }, |