figasm64/figa.asm
2023-10-30 01:38:23 +01:00

17 lines
193 B
NASM

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