1 2 3 4 5 6 7 8 9 10
global _start section .text _start: xor ebx, ebx xor eax, eax mov al, 0x1 int 0x80 ; nasm -f elf64 test.asm && ld -o test.o