aboutsummaryrefslogtreecommitdiff
path: root/main.s
blob: 8f72dfe3e85946aac73a8302980f63c8d68ac910 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
.syntax unified
.cpu cortex-m0plus
.thumb

.type main, %function
.global main

main:
  bl start_xosc
  bl start_pll
  bl setup_clocks
  bl setup_gpio
  bl setup_led
  b led_on