mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-03-01 13:26:47 +08:00
13 lines
146 B
ArmAsm
13 lines
146 B
ArmAsm
.text
|
|
.global _start
|
|
.type _start, "function"
|
|
_start:
|
|
.byte 0
|
|
.size _start, 1
|
|
|
|
.weak foo
|
|
.type foo, "function"
|
|
foo:
|
|
.byte 0
|
|
.size foo, 1
|