Skip to content
Snippets Groups Projects
Commit d6e4e6ea authored by bunnei's avatar bunnei
Browse files

core_timing: Use 1.020GHz for core clock rate.

parent 82151d40
No related branches found
No related tags found
No related merge requests found
...@@ -23,11 +23,9 @@ ...@@ -23,11 +23,9 @@
#include "common/common_types.h" #include "common/common_types.h"
#include "common/logging/log.h" #include "common/logging/log.h"
// The timing we get from the assembly is 268,111,855.956 Hz // The below clock rate is based on Switch's clockspeed being widely known as 1.020GHz
// It is possible that this number isn't just an integer because the compiler could have // The exact value used is of course unverified.
// optimized the multiplication by a multiply-by-constant division. constexpr u64 BASE_CLOCK_RATE = 1019215872; // Switch clock speed is 1020MHz un/docked
// Rounding to the nearest integer should be fine
constexpr u64 BASE_CLOCK_RATE = 383778816; // Switch clock speed is 384MHz docked
constexpr u64 MAX_VALUE_TO_MULTIPLY = std::numeric_limits<s64>::max() / BASE_CLOCK_RATE; constexpr u64 MAX_VALUE_TO_MULTIPLY = std::numeric_limits<s64>::max() / BASE_CLOCK_RATE;
inline s64 msToCycles(int ms) { inline s64 msToCycles(int ms) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment