Fixed timing "fix": It's supposed to be 7.5

This commit is contained in:
Lightos1
2025-12-09 10:57:32 +01:00
committed by GitHub
parent 65aa9f9f47
commit 89f91fda14

View File

@@ -38,7 +38,7 @@ namespace ams::ldr::oc {
const std::array<u32, 8> tRCD_values = {18, 17, 16, 15, 14, 13, 12, 11};
const std::array<u32, 8> tRP_values = {18, 17, 16, 15, 14, 13, 12, 11};
const std::array<u32, 10> tRAS_values = {42, 36, 34, 32, 30, 28, 26, 24, 22, 20};
const std::array<double, 8> tRRD_values = {10.0, 7.5, 6.0, 5.0, 4.0, 3.0, 2.0, 1.0}; // Yes, we do care, due to Nintendo Homebrew
const std::array<double, 8> tRRD_values = {/*10.0,*/7.5, 6.0, 5.0, 4.0, 3.0, 2.0, 1.0};
const std::array<u32, 11> tRFC_values = {140, 130, 120, 110, 100, 90, 80, 70, 60, 50, 40};
const std::array<u32, 10> tWTR_values = {10, 9, 8, 7, 6, 5, 4, 3, 3, 1};
const std::array<u32, 6> tREFpb_values = {3900, 5850, 7800, 11700, 15600, 99999};
@@ -160,3 +160,4 @@ namespace ams::ldr::oc {
}
}