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:
authorAlan Modra <modra@gmail.com>2005-05-19 10:59:36 +0400
committerAlan Modra <modra@gmail.com>2005-05-19 10:59:36 +0400
commit4390dc9df5a1b27806bc3dad7f72686088ce950c (patch)
tree34d8c73ffceddba446c114c0dbafc27efb1f67f2 /include/opcode/ppc.h
parent969d6089ced1f8d406b2abbafad3d8091fa121cc (diff)
* ppc.h (PPC_OPCODE_POWER5): Define.
Diffstat (limited to 'include/opcode/ppc.h')
-rw-r--r--include/opcode/ppc.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/opcode/ppc.h b/include/opcode/ppc.h
index ef097a0ec..851b8bbab 100644
--- a/include/opcode/ppc.h
+++ b/include/opcode/ppc.h
@@ -134,6 +134,9 @@ extern const int powerpc_num_opcodes;
/* Opcode is supported by machine check APU. */
#define PPC_OPCODE_RFMCI 0x800000
+/* Opcode is only supported by Power5 architecture. */
+#define PPC_OPCODE_POWER5 0x1000000
+
/* A macro to extract the major opcode from an instruction. */
#define PPC_OP(i) (((i) >> 26) & 0x3f)