diff options
author | Ian Lance Taylor <ian@airs.com> | 1995-03-03 21:13:37 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1995-03-03 21:13:37 +0000 |
commit | 49f245127b72d3cc68d6feedecb5be743d0712c1 (patch) | |
tree | 4013a5f4530dd13d29178679ce13422000abc0f4 /include/opcode/mips.h | |
parent | 629b6214ad3a5514e0267b09c59312936c9306e7 (diff) | |
download | gdb-49f245127b72d3cc68d6feedecb5be743d0712c1.zip gdb-49f245127b72d3cc68d6feedecb5be743d0712c1.tar.gz gdb-49f245127b72d3cc68d6feedecb5be743d0712c1.tar.bz2 |
* mips.h (INSN_ISA4): Define.
Diffstat (limited to 'include/opcode/mips.h')
-rw-r--r-- | include/opcode/mips.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/opcode/mips.h b/include/opcode/mips.h index 6645828..366e243 100644 --- a/include/opcode/mips.h +++ b/include/opcode/mips.h @@ -230,6 +230,8 @@ struct mips_opcode #define INSN_ISA3 0x20000000 /* MIPS R4650 instruction. */ #define INSN_4650 0x30000000 +/* MIPS ISA 4 instruction (R8000). */ +#define INSN_ISA4 0x40000000 /* Instruction is actually a macro. It should be ignored by the disassembler, and requires special treatment by the assembler. */ @@ -295,6 +297,8 @@ enum { M_DIV_3I, M_DIVU_3, M_DIVU_3I, + M_DLA_AB, + M_DLI, M_DMUL, M_DMUL_I, M_DMULO, |