From 9ea4a465f4d4a4e58a78ed57f06af8f5a615699c Mon Sep 17 00:00:00 2001 From: Maxim Poliakovski Date: Fri, 23 Dec 2022 23:45:17 +0100 Subject: [PATCH] machinegazelle: tiny comment improvement. --- machines/machinegazelle.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/machines/machinegazelle.cpp b/machines/machinegazelle.cpp index 94dfdb4..a109004 100644 --- a/machines/machinegazelle.cpp +++ b/machines/machinegazelle.cpp @@ -61,7 +61,7 @@ int initialize_gazelle(std::string& id) return -1; } - // plug 8MB RAM DIMM into slot #0 + // plug 32MB RAM DIMM into slot #0 psx_obj->insert_ram_dimm(0, DRAM_CAP_32MB); // allocate and map physical RAM @@ -74,6 +74,7 @@ int initialize_gazelle(std::string& id) // init virtual CPU and request MPC603ev ppc_cpu_init(psx_obj, PPC_VER::MPC603EV, timebase_freq); + // CPU frequency is hardcoded to 225 MHz for now ppc_state.spr[SPR::HID1] = get_cpu_pll_value(225000000) << 28; return 0;