mirror of
https://github.com/pkivolowitz/asm_book.git
synced 2026-06-21 02:06:48 +08:00
12 lines
171 B
ArmAsm
12 lines
171 B
ArmAsm
.text
|
|
.global main
|
|
.align 2
|
|
|
|
main: ldr x0, =hw
|
|
bl puts
|
|
ret
|
|
|
|
.data
|
|
hw: .asciz "Hello World!"
|
|
|
|
.end
|