aboutsummaryrefslogtreecommitdiff
path: root/test.asm
blob: 3fb6e312356151626ff06c26e9e1c13e6df9dfda (plain) (blame)
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