mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-12 12:16:04 +08: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
|
||
|
|