pure assembly STM32 programming examples and boilerplates for masochists
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

18 lines
318 B

;;;-------------------------------------------------
;; Delay function. Duration in R0
;;
Delay PROC
PUSH {R0, R2, LR}
DELAY1
LDR R2, =40000
DELAY2 SUBS R2, #1
BNE DELAY2
SUBS R0, R0, #1
BNE DELAY1
POP {R0, R2, PC}
ENDP
;;
;;;-------------------------------------------------
END