diff options
author | Diego Novillo <dnovillo@google.com> | 1999-10-07 06:17:04 +0000 |
---|---|---|
committer | Diego Novillo <dnovillo@google.com> | 1999-10-07 06:17:04 +0000 |
commit | e1286a382568cb6b818a91b97752e22de9ec0087 (patch) | |
tree | 6c644b9d6755cc53f7e570db3023ab556d5efc23 /include/opcode/d10v.h | |
parent | da3a7aa1b60ab75f2ddecae759824c71737816c0 (diff) | |
download | cygnal-e1286a382568cb6b818a91b97752e22de9ec0087.tar.gz cygnal-e1286a382568cb6b818a91b97752e22de9ec0087.tar.bz2 cygnal-e1286a382568cb6b818a91b97752e22de9ec0087.zip |
Added seven new instructions ld, ld2w, sac, sachi, slae, st and
st2w for d10v. Created new testsuite for d10v to verify new
instructions.
Diffstat (limited to 'include/opcode/d10v.h')
-rw-r--r-- | include/opcode/d10v.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/opcode/d10v.h b/include/opcode/d10v.h index 4b74c9862..7c6d32ddf 100644 --- a/include/opcode/d10v.h +++ b/include/opcode/d10v.h @@ -176,6 +176,10 @@ extern const struct d10v_operand d10v_operands[]; /* general purpose register */ #define OPERAND_GPR (0x40000) +/* special imm3 values with range restricted to -2 <= imm3 <= 3 */ +/* needed for rac/rachi */ +#define RESTRICTED_NUM3 (0x80000) + /* Structure to hold information about predefined registers. */ struct pd_reg { |