blob: fc3aa2a852e9c8d13f0743167a2b10c08821462b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
.syntax unified
.text
# Align this to 256-byte boundary for easier address matching.
.align 8
# We do not want to run this file. We define _start here to avoid missing
# entry point.
.global _start
.type _start, %function
_start:
bx r0
bx r15
.size _start, .-_start
|