aboutsummaryrefslogtreecommitdiffstats
path: root/src/start.s
blob: 0fd2a5f37623d9c610283f770a35f5a778580377 (plain)
1
2
3
4
5
6
7
8
9
10
11
.section ".text.boot"

.global _start

_start:
    ldr r3, =main
    blx r3

halt:
    wfe
    b halt