Merge branch 'develop' of https://github.com/Horizon-OC/Horizon-OC into develop

This commit is contained in:
souldbminersmwc
2026-01-11 16:36:51 -05:00
4 changed files with 50 additions and 2 deletions

View File

@@ -496,6 +496,10 @@ namespace ams::ldr::oc::pcv::mariko {
table->burst_mc_regs.mc_emem_arb_timing_r2r = CEIL(table->burst_regs.emc_rext / 4) - 1 + MC_ARB_SFA;
}
if (table->burst_mc_regs.mc_emem_arb_timing_w2w > 1) {
table->burst_mc_regs.mc_emem_arb_timing_w2w = CEIL(table->burst_regs.emc_wext / MC_ARB_DIV) - 1 + MC_ARB_SFA;
}
table->burst_mc_regs.mc_emem_arb_timing_r2w = CEIL(tR2W / MC_ARB_DIV) - 1 + MC_ARB_SFA;
table->burst_mc_regs.mc_emem_arb_timing_w2r = CEIL(tW2R / MC_ARB_DIV) - 1 + MC_ARB_SFA;

View File

@@ -907,6 +907,7 @@ int main(int argc, char* argv[])
(based on tinymembench-pthread, a multi-thread fork of simple benchmark for memory throughput and latency)\n\n");
printf("Copyright (c) 2011-2016 Siarhei Siamashka\n");
printf("Copyright (c) 2023 KazushiMe\n");
printf("Copyright (c) 2023 hanai3Bi\n");
printf("Copyright (c) 2025 Souldbminer\n");
printf("\n");
@@ -1074,4 +1075,4 @@ latency:
// Deinitialize and clean up resources used by the console (important!)
consoleExit(NULL);
return 0;
}
}