This repository has been archived on 2022-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
Luma3DS-3GX/source/fatfs/sdmmc/delay.s

18 lines
339 B
ArmAsm
Raw Normal View History

// Copyright 2014 Normmatt
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
2015-08-05 03:57:37 +02:00
.arm
.global ioDelay
.type ioDelay STT_FUNC
2015-08-05 03:57:37 +02:00
@ioDelay ( u32 us )
ioDelay:
ldr r1, =0x18000000 @ VRAM
1:
@ Loop doing uncached reads from VRAM to make loop timing more reliable
ldr r2, [r1]
subs r0, #1
bgt 1b
bx lr