mirror of
https://github.com/izumariu/puberty.git
synced 2025-06-18 13:35:36 -04:00
20 lines
202 B
ArmAsm
20 lines
202 B
ArmAsm
.text
|
|
.global _start
|
|
|
|
_start:
|
|
mov $1, %rax
|
|
mov $1, %rdi
|
|
mov $msg, %rsi
|
|
mov $msl, %rdx
|
|
syscall
|
|
|
|
mov $60, %rax
|
|
xor %rdi, %rdi
|
|
syscall
|
|
|
|
msg:
|
|
.ascii "Hello world!"
|
|
.set msgl, .-msg
|
|
|
|
.bss
|