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

19 lines
291 B
ArmAsm
Raw Normal View History

2016-09-23 18:07:45 +02:00
.text
2015-08-05 03:57:37 +02:00
.arm
2016-09-23 18:07:45 +02:00
.align 4
2016-09-07 14:26:01 +02:00
.global waitcycles
2016-09-23 18:07:45 +02:00
.type waitcycles, %function
2015-08-05 03:57:37 +02:00
2016-09-07 14:26:01 +02:00
@waitcycles ( u32 us )
waitcycles:
PUSH {R0-R2,LR}
STR R0, [SP,#4]
waitcycles_loop:
LDR R3, [SP,#4]
SUBS R2, R3, #1
STR R2, [SP,#4]
CMP R3, #0
BNE waitcycles_loop
POP {R0-R2,PC}