sysclk: refactor misc gui

This commit is contained in:
souldbminersmwc
2025-12-21 12:56:36 -05:00
parent 4f6f2fe86d
commit 12947d3dc4
4 changed files with 699 additions and 728 deletions

View File

@@ -142,7 +142,7 @@ bool ClockManager::IsAssignableHz(SysClkModule module, std::uint32_t hz)
case SysClkModule_CPU:
return hz >= 400000000;
case SysClkModule_MEM:
return hz == 204000000 || hz >= 665600000;
return hz >= 665600000;
default:
return true;
}