10 lines
104 B
ArmAsm
10 lines
104 B
ArmAsm
.global _start
|
|
.global bar
|
|
|
|
# We will place the section .text at 0x1000.
|
|
|
|
.text
|
|
|
|
_start:
|
|
b bar
|
|
ret
|