aboutsummaryrefslogtreecommitdiffstats
path: root/x86_64/false.s
blob: d02616289a27dd4bb8599b1fdc532060cff57abe (plain) (blame)
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) */
	mov $1,%rdi   /* return code 1 */
	syscall