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

.type main, %function
.global main

main:
  bl start_xosc
  bl setup_clocks
  bl setup_gpio
  bl setup_uart
  b SETUP