2020-08-22 18:05:08 +00:00
|
|
|
#include "machineproperties.h"
|
2020-09-08 14:46:54 +00:00
|
|
|
#include <map>
|
2020-08-22 18:05:08 +00:00
|
|
|
|
2020-09-20 21:25:29 +00:00
|
|
|
static std::map<std::string, StrProperty> PowerMac6100_Properties = {
|
|
|
|
{"machineid", StrProperty("PowerMacG3")},
|
|
|
|
{"cputype", StrProperty("PPC_MPC750")},
|
|
|
|
{"motherboard", StrProperty("Grackle")},
|
|
|
|
{"ioboard", StrProperty("Heathrow")},
|
2020-10-04 16:58:21 +00:00
|
|
|
{"rambank1", StrProperty("8")},
|
2020-09-20 21:25:29 +00:00
|
|
|
{"minram", StrProperty("32")},
|
|
|
|
{"maxram", StrProperty("256")},
|
|
|
|
{"gfxcard", StrProperty("Nubus_Video")},
|
|
|
|
{"gfxmem", StrProperty("2")}
|
2020-09-08 14:46:54 +00:00
|
|
|
};
|
2020-08-22 18:05:08 +00:00
|
|
|
|
2020-09-20 21:25:29 +00:00
|
|
|
static std::map<std::string, StrProperty> PowerMacG3_Properties = {
|
|
|
|
{"machineid", StrProperty("PowerMacG3")},
|
|
|
|
{"cputype", StrProperty("PPC_MPC750")},
|
|
|
|
{"motherboard", StrProperty("Grackle")},
|
|
|
|
{"ioboard", StrProperty("Heathrow")},
|
|
|
|
{"rambank1", StrProperty("64")},
|
|
|
|
{"minram", StrProperty("32")},
|
|
|
|
{"maxram", StrProperty("256")},
|
|
|
|
{"gfxcard", StrProperty("ATI_Rage_Pro")},
|
|
|
|
{"gfxmem", StrProperty("2")}
|
2020-09-08 14:46:54 +00:00
|
|
|
};
|
2020-08-22 18:05:08 +00:00
|
|
|
|
2020-09-08 14:46:54 +00:00
|
|
|
static std::map<std::string, uint32_t> PPC_CPUs = {
|
|
|
|
{"PPC_MPC601", 0x00010001},
|
|
|
|
{"PPC_MPC603", 0x00030001},
|
|
|
|
{"PPC_MPC604", 0x00040001},
|
|
|
|
{"PPC_MPC603E", 0x00060101},
|
|
|
|
{"PPC_MPC750", 0x00080200}
|
|
|
|
};
|
2020-08-23 16:24:52 +00:00
|
|
|
|
2020-09-08 14:46:54 +00:00
|
|
|
static std::map<std::string, uint32_t> GFX_CARDs = {
|
|
|
|
{"ATI_Rage_Pro", 0x10024750},
|
|
|
|
{"ATI_Rage_128_Pro", 0x10025052}
|
|
|
|
};
|