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

.type main, %function
.global main

main:
  bl start_xosc
  bl setup_clocks
  bl setup_gpio
  bl setup_uart
1:
  bl uart_recv
  bl uart_send
  b 1b