From 46a5735f5c1c4eb6ba8841d3f5c0046e008b8cd9 Mon Sep 17 00:00:00 2001 From: Wolfvak Date: Tue, 23 Apr 2019 17:11:28 -0300 Subject: [PATCH] - fixed bug where a N3DS without extra FCRAM enabled would get stuck on boot --- arm11/source/system/sys.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/arm11/source/system/sys.c b/arm11/source/system/sys.c index 69d2f6a..4ce0914 100755 --- a/arm11/source/system/sys.c +++ b/arm11/source/system/sys.c @@ -40,12 +40,10 @@ static void SYS_EnableClkMult(void) // as early as possible in the initialization chain if (SYS_IsNewConsole() && !SYS_ClkMultEnabled()) { GIC_Enable(88, BIT(0), GIC_HIGHEST_PRIO, NULL); - ARM_EnableInterrupts(); *CFG11_MPCORE_CLKCNT = 0x8001; do { ARM_WFI(); } while(!(*CFG11_MPCORE_CLKCNT & 0x8000)); - ARM_DisableInterrupts(); GIC_Disable(88, BIT(0)); } }