blob: f2f6126d0b525ac1c1b2466421da7ec074cfc6dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
.syntax unified
.cpu cortex-m0plus
.thumb
.section .entry, "ax"
.type main, %function
.global main
main:
bl start_xosc
bl setup_clocks
bl setup_gpio
bl setup_uart
b hexedit
|