mirror of
https://review.haiku-os.org/buildtools
synced 2025-02-07 22:44:46 +01:00
18 lines
224 B
ArmAsm
18 lines
224 B
ArmAsm
.syntax unified
|
|
.arch armv6
|
|
.weak bar
|
|
.section .far, "ax", %progbits
|
|
.global _start
|
|
.type _start, %function
|
|
_start:
|
|
bl bar
|
|
bleq bar
|
|
.thumb
|
|
.type foo, %function
|
|
.thumb_func
|
|
foo:
|
|
bl bar
|
|
movs r0, #0
|
|
bl bar
|
|
bx lr
|