skip version nibble when detecting e200 processor version

This commit is contained in:
Thomas Doerfler
2010-04-07 14:18:53 +00:00
parent 232cdcb3d6
commit 9a66caae9b
2 changed files with 27 additions and 3 deletions

View File

@@ -57,7 +57,8 @@ typedef enum
PPC_e300c3 = 0x8085, /* e300c3 core */
PPC_e200z0 = 0x8171,
PPC_e200z1 = 0x8144,
PPC_e200z6 = 0x8115,
PPC_e200z6 = 0x8112,
PPC_e200z6v5= 0x8115,
PPC_PSIM = 0xfffe, /* GDB PowerPC simulator -- fake version */
PPC_UNKNOWN = 0xffff
} ppc_cpu_id_t;