aboutsummaryrefslogblamecommitdiffstats
path: root/x86_64/true.s
blob: f8f8945f48bbddba9e972a89f214b3ec61351357 (plain) (tree)
1
2
3
4
5
6
7
8

                                                         


              

                                          
               
/* See LICENSE file for copyright and license details. */

.text
.global _start
_start:
	mov $60,%rax   /* 60 is exit(2) */
	xor %rdi,%rdi  /* return code 0 */
	syscall