mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-11 19:49:32 +00: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
|