yac
/
coreutils
Archived
2
0
Fork 0
This repository has been archived on 2024-01-01. You can view files and clone it, but cannot push or open issues or pull requests.
coreutils/src/asm/false.asm

14 lines
193 B
NASM

; Copyright (c) 2022 silt <silt@tebibyte.media>
; 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