* tic80.h (TIC80_OPERAND_M_SI): Add operand modifier for ":m".
(TIC80_OPERAND_M_LI): Ditto
This commit is contained in:
parent
fd68bb98f6
commit
ad429fdd7f
2 changed files with 13 additions and 0 deletions
|
@ -1,4 +1,9 @@
|
||||||
start-sanitize-tic80
|
start-sanitize-tic80
|
||||||
|
Sun Jan 5 12:12:19 1997 Fred Fish <fnf@cygnus.com>
|
||||||
|
|
||||||
|
* tic80.h (TIC80_OPERAND_M_SI): Add operand modifier for ":m".
|
||||||
|
(TIC80_OPERAND_M_LI): Ditto
|
||||||
|
|
||||||
Sat Jan 4 19:02:44 1997 Fred Fish <fnf@cygnus.com>
|
Sat Jan 4 19:02:44 1997 Fred Fish <fnf@cygnus.com>
|
||||||
|
|
||||||
* tic80.h (TIC80_OPERAND_BITNUM): Renamed from TIC80_OPERAND_CC_SZ.
|
* tic80.h (TIC80_OPERAND_BITNUM): Renamed from TIC80_OPERAND_CC_SZ.
|
||||||
|
|
|
@ -165,6 +165,14 @@ extern const struct tic80_operand tic80_operands[];
|
||||||
symbolically as "EIP", "EPC", etc. */
|
symbolically as "EIP", "EPC", etc. */
|
||||||
#define TIC80_OPERAND_CR (0400)
|
#define TIC80_OPERAND_CR (0400)
|
||||||
|
|
||||||
|
/* This operand may have a ":m" modifier specified by bit 17 in a short
|
||||||
|
immediate form instruction. */
|
||||||
|
#define TIC80_OPERAND_M_SI (01000)
|
||||||
|
|
||||||
|
/* This operand may have a ":m" modifier specified by bit 15 in a long
|
||||||
|
immediate or register form instruction. */
|
||||||
|
#define TIC80_OPERAND_M_LI (02000)
|
||||||
|
|
||||||
/* Values which go in the struct tic80_opcode format field to distinguish
|
/* Values which go in the struct tic80_opcode format field to distinguish
|
||||||
between various types of instructions with the same mnemonic. FIXME: Not
|
between various types of instructions with the same mnemonic. FIXME: Not
|
||||||
currently used? */
|
currently used? */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue