diff options
author | Ken Raeburn <raeburn@cygnus> | 1997-10-28 03:42:29 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@cygnus> | 1997-10-28 03:42:29 +0000 |
commit | 581c03af3ea615e614a725d955a4979eeb915608 (patch) | |
tree | 82bb125d4f0eb930e0de42f35be02e93ae394918 /opcodes | |
parent | b410ea2b2b869ac1ba50ff9f89b24d7a3d345ec7 (diff) | |
download | gdb-581c03af3ea615e614a725d955a4979eeb915608.zip gdb-581c03af3ea615e614a725d955a4979eeb915608.tar.gz gdb-581c03af3ea615e614a725d955a4979eeb915608.tar.bz2 |
added vr5400 stuff, fixed "not" mask
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/ChangeLog | 5 | ||||
-rw-r--r-- | opcodes/mips-opc.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index b948ee9..0c5cadd 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,8 @@ +Mon Oct 27 22:34:03 1997 Ken Raeburn <raeburn@cygnus.com> + + * mips-opc.c: Fix bug in mask for "not" pseudo-instruction. + (WR_HILO, RD_HILO, MOD_HILO): New macros. + Thu Oct 23 14:57:58 1997 Nick Clifton <nickc@cygnus.com> * v850-dis.c (disassemble): Replace // with /* ... */ diff --git a/opcodes/mips-opc.c b/opcodes/mips-opc.c index 186bedd..9d59452d 100644 --- a/opcodes/mips-opc.c +++ b/opcodes/mips-opc.c @@ -62,6 +62,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * #define RD_HI INSN_READ_HI #define RD_LO INSN_READ_LO + #define I1 INSN_ISA1 #define I2 INSN_ISA2 #define I3 INSN_ISA3 @@ -70,7 +71,6 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * #define L1 INSN_4010 #define V1 INSN_4100 #define T3 INSN_3900 - /* start-sanitize-r5900 */ #define T5 INSN_5900 /* end-sanitize-r5900 */ @@ -590,7 +590,7 @@ const struct mips_opcode mips_builtin_opcodes[] = { /* nop is at the start of the table. */ {"nor", "d,v,t", 0x00000027, 0xfc0007ff, WR_d|RD_s|RD_t, I1 }, {"nor", "t,r,I", 0, (int) M_NOR_I, INSN_MACRO }, -{"not", "d,v", 0x00000027, 0xfc0007ff, WR_d|RD_s|RD_t, I1 },/*nor d,s,0*/ +{"not", "d,v", 0x00000027, 0xfc1f07ff, WR_d|RD_s|RD_t, I1 },/*nor d,s,0*/ {"or", "d,v,t", 0x00000025, 0xfc0007ff, WR_d|RD_s|RD_t, I1 }, {"or", "t,r,I", 0, (int) M_OR_I, INSN_MACRO }, {"ori", "t,r,i", 0x34000000, 0xfc000000, WR_t|RD_s, I1 }, |