machinetnt: Add 604 cpu option.

This commit is contained in:
joevt 2024-04-24 06:27:38 -07:00 committed by dingusdev
parent 721c70166c
commit 9a489d13f4
1 changed files with 2 additions and 0 deletions

View File

@ -102,6 +102,8 @@ int initialize_tnt(std::string& id)
std::string cpu = GET_STR_PROP("cpu");
if (cpu == "604e")
ppc_cpu_init(memctrl_obj, PPC_VER::MPC604E, false, 12500000ULL);
else if (cpu == "604")
ppc_cpu_init(memctrl_obj, PPC_VER::MPC604, false, 12500000ULL);
else if (cpu == "601")
ppc_cpu_init(memctrl_obj, PPC_VER::MPC601, true, 7833600ULL);
else if (cpu == "750") {