figasm64/figa.s
2023-10-30 01:12:20 +01:00

16 lines
192 B
ArmAsm

section .data
text1 db "Che schifo la figa.",10,"Meglio Linux",10
section .text
global _start
_start:
mov rax, 1
mov rdi, 1
mov rsi, text1
mov rdx, 33
syscall
mov rax, 60
mov rdi, 0
syscall