From 9a489d13f4ed9c83a6049c923e7ab672edf510eb Mon Sep 17 00:00:00 2001 From: joevt Date: Wed, 24 Apr 2024 06:27:38 -0700 Subject: [PATCH] machinetnt: Add 604 cpu option. --- machines/machinetnt.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/machines/machinetnt.cpp b/machines/machinetnt.cpp index bf1b50c..ff6d2a1 100644 --- a/machines/machinetnt.cpp +++ b/machines/machinetnt.cpp @@ -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") {