aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorFred Fish <fnf@specifix.com>1997-01-05 19:15:20 +0000
committerFred Fish <fnf@specifix.com>1997-01-05 19:15:20 +0000
commitad429fdd7f4a9a38c06ebb4c0c9f297395518ce3 (patch)
treec43ecdc7a2cfe598d60aa1540de45beb463f0eab /include
parentfd68bb98f6cdb8dbdebf9eb30509554c39bfb81a (diff)
downloadbinutils-ad429fdd7f4a9a38c06ebb4c0c9f297395518ce3.zip
binutils-ad429fdd7f4a9a38c06ebb4c0c9f297395518ce3.tar.gz
binutils-ad429fdd7f4a9a38c06ebb4c0c9f297395518ce3.tar.bz2
* tic80.h (TIC80_OPERAND_M_SI): Add operand modifier for ":m".
(TIC80_OPERAND_M_LI): Ditto
Diffstat (limited to 'include')
-rw-r--r--include/opcode/ChangeLog5
-rw-r--r--include/opcode/tic80.h8
2 files changed, 13 insertions, 0 deletions
diff --git a/include/opcode/ChangeLog b/include/opcode/ChangeLog
index 53f7368..93fabd8 100644
--- a/include/opcode/ChangeLog
+++ b/include/opcode/ChangeLog
@@ -1,4 +1,9 @@
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>
* tic80.h (TIC80_OPERAND_BITNUM): Renamed from TIC80_OPERAND_CC_SZ.
diff --git a/include/opcode/tic80.h b/include/opcode/tic80.h
index 87367ff..5ec2747 100644
--- a/include/opcode/tic80.h
+++ b/include/opcode/tic80.h
@@ -165,6 +165,14 @@ extern const struct tic80_operand tic80_operands[];
symbolically as "EIP", "EPC", etc. */
#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
between various types of instructions with the same mnemonic. FIXME: Not
currently used? */