From bf767f2c01746631b73ea1ff5f0ee999862adac7 Mon Sep 17 00:00:00 2001 From: Wolfvak Date: Tue, 4 Aug 2020 16:41:10 -0300 Subject: [PATCH] add a needed delay for new 3ds consoles (#617) --- arm11/source/system/sys.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/arm11/source/system/sys.c b/arm11/source/system/sys.c index fafb21a0b..3f616eb87 100755 --- a/arm11/source/system/sys.c +++ b/arm11/source/system/sys.c @@ -107,6 +107,10 @@ void SYS_CoreZeroInit(void) mmuMapArea(0x20000000, 0x20000000, 128UL << 20, MMU_FLAGS(MMU_CACHE_WB, MMU_READ_WRITE, 1, 1)); } + if (SYS_IsNewConsole()) { + TIMER_WaitMS(150); + } + // Initialize peripherals PXI_Reset();