add a needed delay for new 3ds consoles (#617)

This commit is contained in:
Wolfvak 2020-08-04 16:41:10 -03:00 committed by GitHub
parent 4dc5661d58
commit bf767f2c01
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -107,6 +107,10 @@ void SYS_CoreZeroInit(void)
mmuMapArea(0x20000000, 0x20000000, 128UL << 20, MMU_FLAGS(MMU_CACHE_WB, MMU_READ_WRITE, 1, 1)); mmuMapArea(0x20000000, 0x20000000, 128UL << 20, MMU_FLAGS(MMU_CACHE_WB, MMU_READ_WRITE, 1, 1));
} }
if (SYS_IsNewConsole()) {
TIMER_WaitMS(150);
}
// Initialize peripherals // Initialize peripherals
PXI_Reset(); PXI_Reset();