From: Frank Ch. Eigler Date: Mon, 18 May 1998 17:46:35 +0000 (+0000) Subject: * Followup for SCEI PR 15853: 2-operand R5900 "mult1" instruction. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=10c3731d9c9f99000ab415a81d5fbb547ee2155d;p=binutils-gdb.git * Followup for SCEI PR 15853: 2-operand R5900 "mult1" instruction. Mon May 18 14:27:06 1998 Frank Ch. Eigler * mips-opc.c (mult1): Add two-operand variety of mult1 for R5900. --- diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 02bfd2aef0d..99e2829bf92 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,4 +1,8 @@ start-sanitize-r5900 +Mon May 18 14:27:06 1998 Frank Ch. Eigler + + * mips-opc.c (mult1): Add two-operand variety of mult1 for R5900. + Mon May 18 11:44:00 1998 Jeffrey A Law (law@cygnus.com) * mips-dis.c (print_insn_arg): Handle ';' opcode completer. diff --git a/opcodes/mips-opc.c b/opcodes/mips-opc.c index 62f7e8b1667..d346afdc12e 100644 --- a/opcodes/mips-opc.c +++ b/opcodes/mips-opc.c @@ -751,6 +751,7 @@ const struct mips_opcode mips_builtin_opcodes[] = { {"mult", "s,t", 0x00000018, 0xfc00ffff, RD_s|RD_t|WR_HI|WR_LO, I1}, {"mult", "d,s,t", 0x00000018, 0xfc0007ff, RD_s|RD_t|WR_HI|WR_LO|WR_d, G1}, /* start-sanitize-r5900 */ +{"mult1", "s,t", 0x70000018, 0xfc00ffff, RD_s|RD_t|WR_HI|WR_LO, T5}, {"mult1", "d,s,t", 0x70000018, 0xfc0007ff, RD_s|RD_t|WR_HI|WR_LO|WR_d, T5}, /* end-sanitize-r5900 */ {"multu", "s,t", 0x00000019, 0xfc00ffff, RD_s|RD_t|WR_HI|WR_LO, I1},