47735bb1bd
del: KSH
14 lines
226 B
NASM
14 lines
226 B
NASM
; SPDX-License-Identifier: GPL-3.0-or-later
|
|
; Copyright (c) 2026 0xKarinyash
|
|
|
|
[bits 64]
|
|
|
|
section .text
|
|
global _start
|
|
extern main
|
|
extern OSServiceProcessExit
|
|
|
|
_start:
|
|
call main
|
|
mov rdi, rax
|
|
call OSServiceProcessExit |