summaryrefslogtreecommitdiff
path: root/include/opcode/s390.h
diff options
context:
space:
mode:
authorMartin Schwidefsky <schwidefsky@de.ibm.com>2005-08-12 18:02:38 +0000
committerMartin Schwidefsky <schwidefsky@de.ibm.com>2005-08-12 18:02:38 +0000
commit8c9295623d9af7136468861cfbf445720bf9871e (patch)
tree1b191460812a2b1be62f885027f2efb9843373f8 /include/opcode/s390.h
parent6c639ef96454b5b9b0cd9aed854607af7937f600 (diff)
downloadbinutils-gdb-8c9295623d9af7136468861cfbf445720bf9871e.tar.gz
* s390.h (s390_opcode_cpu_val): Add enum for cpu type z9-109.
Diffstat (limited to 'include/opcode/s390.h')
-rw-r--r--include/opcode/s390.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/include/opcode/s390.h b/include/opcode/s390.h
index ac06555feb8..7bb30de285f 100644
--- a/include/opcode/s390.h
+++ b/include/opcode/s390.h
@@ -35,7 +35,8 @@ enum s390_opcode_cpu_val
S390_OPCODE_G5 = 0,
S390_OPCODE_G6,
S390_OPCODE_Z900,
- S390_OPCODE_Z990
+ S390_OPCODE_Z990,
+ S390_OPCODE_Z9_109
};
/* The opcode table is an array of struct s390_opcode. */
@@ -138,4 +139,8 @@ extern const struct s390_operand s390_operands[];
/* This operand is a length. */
#define S390_OPERAND_LENGTH 0x200
-#endif /* S390_H */
+/* This operand is optional. Only a single operand at the end of
+ the instruction may be optional. */
+#define S390_OPERAND_OPTIONAL 0x400
+
+ #endif /* S390_H */