1
0
Fork 0
figasm64/figa.asm

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