diff options
author | Alan Modra <amodra@gmail.com> | 2008-04-14 11:01:38 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2008-04-14 11:01:38 +0000 |
commit | 19a6653ce8c6d8a76586a54f3c0396063de5f987 (patch) | |
tree | adaff4ba47526fb3747e9f0b91dc95d09578b936 /include/opcode/ppc.h | |
parent | e2208220008a968fa98c03851a5e1eda4684ff2b (diff) | |
download | gdb-19a6653ce8c6d8a76586a54f3c0396063de5f987.zip gdb-19a6653ce8c6d8a76586a54f3c0396063de5f987.tar.gz gdb-19a6653ce8c6d8a76586a54f3c0396063de5f987.tar.bz2 |
ppc e500mc support
Diffstat (limited to 'include/opcode/ppc.h')
-rw-r--r-- | include/opcode/ppc.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/opcode/ppc.h b/include/opcode/ppc.h index 4cd81bf..f4023c7 100644 --- a/include/opcode/ppc.h +++ b/include/opcode/ppc.h @@ -149,6 +149,9 @@ extern const int powerpc_num_opcodes; /* Opcode is supported by CPUs with paired singles support. */ #define PPC_OPCODE_PPCPS 0x10000000 +/* Opcode is supported by Power E500MC */ +#define PPC_OPCODE_E500MC 0x20000000 + /* A macro to extract the major opcode from an instruction. */ #define PPC_OP(i) (((i) >> 26) & 0x3f) |