0d1a7a2 ^
136e344
d738229 ^
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