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