ppcemu: add PVR for 603ev.

This commit is contained in:
Maxim Poliakovski 2022-12-23 16:56:54 +01:00
parent a1d9fcfa9d
commit 7ba8921649
1 changed files with 6 additions and 5 deletions

View File

@ -109,11 +109,12 @@ enum SPR : int {
/** symbolic names for common PPC processors */
enum PPC_VER : uint32_t {
MPC601 = 0x00010001,
MPC603 = 0x00030001,
MPC604 = 0x00040001,
MPC603E = 0x00060101,
MPC750 = 0x00080200
MPC601 = 0x00010001,
MPC603 = 0x00030001,
MPC604 = 0x00040001,
MPC603E = 0x00060101,
MPC603EV = 0x00070101,
MPC750 = 0x00080200
};
/**