soaplin/testing/test.asm
2025-05-09 15:07:22 +02:00

10 lines
No EOL
141 B
NASM

bits 64
section .text
global _start
_start:
int 0x80
; tell the kernel to exit the process.
mov rax, 10
int 0x80
ret