figasm64/figa.asm

17 lines
193 B
NASM
Raw Permalink Normal View History

2023-10-30 01:38:23 +01:00
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