aboutsummaryrefslogtreecommitdiffstats
path: root/x86_64/true.s
blob: 860575b85042c6656d59e0bb95bc6f714e099e7c (plain) (blame)
1
2
3
4
5
6
7
.text
.global _start
_start:
	mov $60,%rax   /* 60 is exit(2) */
	xor %rdi,%rdi  /* return code 0 */
	syscall