Skip to content

Commit

Permalink
add a needed delay for new 3ds consoles (d0k3#617)
Browse files Browse the repository at this point in the history
  • Loading branch information
Wolfvak authored Aug 4, 2020
1 parent 4dc5661 commit bf767f2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions arm11/source/system/sys.c
Original file line number Diff line number Diff line change
Expand Up @@ -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();

Expand Down

0 comments on commit bf767f2

Please sign in to comment.