diff --git a/include/opcode/ChangeLog b/include/opcode/ChangeLog index 690b19ce0..ec236b3d5 100644 --- a/include/opcode/ChangeLog +++ b/include/opcode/ChangeLog @@ -1,3 +1,7 @@ +2001-10-17 matthew green + + * ppc.h (PPC_OPCODE_BOOKE64): Fix typo. + 2001-10-12 matthew green * ppc.h (PPC_OPCODE_BOOKE, PPC_OPCODE_BOOKE64, PPC_OPCODE_403): New diff --git a/include/opcode/ppc.h b/include/opcode/ppc.h index 26a96ec8d..c313696c6 100644 --- a/include/opcode/ppc.h +++ b/include/opcode/ppc.h @@ -98,7 +98,7 @@ extern const int powerpc_num_opcodes; #define PPC_OPCODE_BOOKE (04000) /* Opcode is only supported by 64-bit Motorola BookE processor. */ -#define PPC_OPCODE_BOOKE64 (001000) +#define PPC_OPCODE_BOOKE64 (010000) /* A macro to extract the major opcode from an instruction. */ #define PPC_OP(i) (((i) >> 26) & 0x3f)