diff options
Diffstat (limited to '')
-rw-r--r-- | x86_64/false.s | 3 | ||||
-rw-r--r-- | x86_64/true.s | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/x86_64/false.s b/x86_64/false.s index 03652b5..d026162 100644 --- a/x86_64/false.s +++ b/x86_64/false.s @@ -1,7 +1,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 - diff --git a/x86_64/true.s b/x86_64/true.s index 860575b..f8f8945 100644 --- a/x86_64/true.s +++ b/x86_64/true.s @@ -1,7 +1,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 - |