aboutsummaryrefslogtreecommitdiffstats
path: root/x86_64
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2023-07-01 08:50:47 +0200
committerMattias Andrée <maandree@kth.se>2023-07-01 08:52:27 +0200
commit0d1a7a2223f50a14c428c4a587edd79170e8bc99 (patch)
tree7926b8b8b9cf676597a9b7ded2f15dfda023bc73 /x86_64
parentpossiblity optimisation of false (diff)
downloadoptimised-true-0d1a7a2223f50a14c428c4a587edd79170e8bc99.tar.gz
optimised-true-0d1a7a2223f50a14c428c4a587edd79170e8bc99.tar.bz2
optimised-true-0d1a7a2223f50a14c428c4a587edd79170e8bc99.tar.xz
Change license to ISC
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'x86_64')
-rw-r--r--x86_64/false.s3
-rw-r--r--x86_64/true.s3
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
-