Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2004-10-07 18:18:17 +0400
committerNick Clifton <nickc@redhat.com>2004-10-07 18:18:17 +0400
commit02a32322f39e9f04e5b9568d518e9ab636c912ea (patch)
tree483fee4618357b892484dd2cfa4e1123ba151e19
parentb9cd8fb5ff87cc260ea2fadb50f03f18c7833b6f (diff)
Add support for CRX co-processor opcodes
-rw-r--r--include/opcode/ChangeLog5
-rw-r--r--include/opcode/crx.h7
2 files changed, 9 insertions, 3 deletions
diff --git a/include/opcode/ChangeLog b/include/opcode/ChangeLog
index 6d75eee99..4eb834853 100644
--- a/include/opcode/ChangeLog
+++ b/include/opcode/ChangeLog
@@ -1,3 +1,8 @@
+2004-10-07 Tomer Levi <Tomer.Levi@nsc.com>
+
+ * crx.h: Add COPS_REG_INS - Coprocessor Special register
+ instruction type.
+
2004-09-30 Paul Brook <paul@codesourcery.com>
* arm.h (ARM_EXT_V6K, ARM_EXT_V6Z): Define.
diff --git a/include/opcode/crx.h b/include/opcode/crx.h
index 1e0d5733a..58db2f8b3 100644
--- a/include/opcode/crx.h
+++ b/include/opcode/crx.h
@@ -168,9 +168,10 @@ operand_type;
#define DIV_INS 14
#define COP_BRANCH_INS 15
#define COP_REG_INS 16
-#define DCR_BRANCH_INS 17
-#define MMC_INS 18
-#define MMU_INS 19
+#define COPS_REG_INS 17
+#define DCR_BRANCH_INS 18
+#define MMC_INS 19
+#define MMU_INS 20
/* Maximum value supported for instruction types. */
#define CRX_INS_MAX (1 << 5)