diff --git a/src/asm/false.asm b/src/asm/false.asm new file mode 100644 index 0000000..7648d9a --- /dev/null +++ b/src/asm/false.asm @@ -0,0 +1,13 @@ +; Copyright (c) 2022 silt +; SPDX-License-Identifier: AGPL-3.0-or-later + +section .text + global _start + +_start: + mov eax,1 + mov ebx,1 ; Exit code + int 0x80 + +section .data + diff --git a/src/asm/true.asm b/src/asm/true.asm new file mode 100644 index 0000000..7aaec23 --- /dev/null +++ b/src/asm/true.asm @@ -0,0 +1,13 @@ +; Copyright (c) 2022 silt +; SPDX-License-Identifier: AGPL-3.0-or-later + +section .text + global _start + +_start: + mov eax,1 + mov ebx,0 ; Exit code + int 0x80 + +section .data +