;*************************************************************************************************** ;* ;* F303k8 example ;* ;* (c) Ondrej Hruska, 2016 ;* ;*************************************************************************************************** AREA MAIN, CODE, READONLY ; this is required by the startup script (?) __use_two_region_memory EXPORT __use_two_region_memory ;;;--- Include library files ----------------------- ;; GET sfr_f303x.asm GET Cfg_RCC.asm GET Cfg_GPIO.asm GET ../Delay.asm ;; ;;;------------------------------------------------- ;;;------------------------------------------------- ;; System config. ;; ;; Called by startup script before __main ;; SystemInit PROC EXPORT SystemInit ; Export to startup script PUSH {LR} BL Cfg_RCC BL Cfg_GPIO POP {PC} ENDP ;; ;;;------------------------------------------------- ;;;------------------------------------------------- ;; Main function ;; ;; Called by startup script after SystemInit. ;; __main is called only once, and does not return! ;; ALIGN __main PROC EXPORT __main ; Export to startup script MAIN_LOOP ; Main loop LDR R0, =10 BL Delay ; Toggle LED at PA5 LDR R2, =GPIOA_ODR LDR R1, [R2] EOR R1, #GPIO_ODR_ODR5 STR R1, [R2] B MAIN_LOOP ; Jump to start of the main loop ENDP ;; ;;;------------------------------------------------- ;; end of file, aligned to 4 bytes ALIGN END