mirror of
https://github.com/pkivolowitz/asm_book.git
synced 2026-06-21 05:16:46 +08:00
14 lines
101 B
ArmAsm
14 lines
101 B
ArmAsm
.global foo
|
|
.text
|
|
.align 2
|
|
|
|
foo:
|
|
ret
|
|
|
|
.section .rodata
|
|
.quad 0xff
|
|
|
|
.bss
|
|
.quad 0xff
|
|
|
|
.end
|