mirror of
https://github.com/LNH-team/pico-loader.git
synced 2026-01-09 02:29:21 +01:00
11 lines
160 B
ArmAsm
11 lines
160 B
ArmAsm
.section ".itcm", "ax"
|
|
.arm
|
|
|
|
// r0: iteration count
|
|
.global waitByLoop
|
|
.type waitByLoop, %function
|
|
waitByLoop:
|
|
subs r0, r0, #1
|
|
bgt waitByLoop
|
|
bx lr
|