0
mirror of https://github.com/Indemsys/Frequency_Inverter.git synced 2026-05-06 21:41:28 +00:00
Files
2022-01-04 12:22:53 +02:00

22 lines
492 B
ArmAsm

SECTION .text : CODE (4)
PUBLIC Delay_m8
; (R0+1)*8
Delay_m8
SUBS r0,r0,#1 ; 1
NOP ; 1
NOP ; 1
NOP ; 1
CMP r0,#0x00 ; 1
BGT Delay_m8 ; 3/1
NOP ; 1
NOP ; 1
NOP ; 1
NOP ; 1
BX lr ; 3
ALIGNROM 1
END