diff options
author | David Ung <davidu@mips.com> | 2005-08-23 11:06:10 +0000 |
---|---|---|
committer | David Ung <davidu@mips.com> | 2005-08-23 11:06:10 +0000 |
commit | dd8b7c222e0ee02526905fb7f4f940debc612122 (patch) | |
tree | 1eb80679cf97e542e3df7c9066b75c793b24fce4 /opcodes/mips16-opc.c | |
parent | ac8058268341e27c245411cba2a80e6c8b8918c6 (diff) | |
download | binutils-gdb-dd8b7c222e0ee02526905fb7f4f940debc612122.tar.gz |
* mips16-opc.c (mips16_opcodes): Add the MIPS16e jalrc/jrc
instructions to the table.
Diffstat (limited to 'opcodes/mips16-opc.c')
-rw-r--r-- | opcodes/mips16-opc.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/opcodes/mips16-opc.c b/opcodes/mips16-opc.c index 3233dfe9858..0459582e20f 100644 --- a/opcodes/mips16-opc.c +++ b/opcodes/mips16-opc.c @@ -222,6 +222,10 @@ const struct mips_opcode mips16_opcodes[] = {"sw", "R,V(S)", 0x6200, 0xff00, RD_31|RD_SP, 0, 0 }, {"xor", "x,y", 0xe80e, 0xf81f, WR_x|RD_x|RD_y, 0, 0 }, /* MIPS16e additions */ +{"jalrc", "x", 0xe8c0, 0xf8ff, WR_31|RD_x|TRAP, 0, 0 }, +{"jalrc", "R,x", 0xe8c0, 0xf8ff, WR_31|RD_x|TRAP, 0, 0 }, +{"jrc", "x", 0xe880, 0xf8ff, RD_x|TRAP, 0, 0 }, +{"jrc", "R", 0xe8a0, 0xffff, RD_31|TRAP, 0, 0 }, {"seb", "x", 0xe891, 0xf8ff, WR_x|RD_x, 0, 0 }, {"seh", "x", 0xe8b1, 0xf8ff, WR_x|RD_x, 0, 0 }, {"sew", "x", 0xe8d1, 0xf8ff, WR_x|RD_x, 0, I3 }, |