mirror of
https://review.haiku-os.org/buildtools
synced 2025-02-23 14:17:42 +01:00
15 lines
121 B
ArmAsm
15 lines
121 B
ArmAsm
|
.text
|
||
|
.arm
|
||
|
.global _start
|
||
|
.type _start, %function
|
||
|
_start:
|
||
|
b foo
|
||
|
|
||
|
.thumb
|
||
|
.global foo
|
||
|
.type foo, %function
|
||
|
foo:
|
||
|
nop
|
||
|
bx lr
|
||
|
|