mirror of
https://github.com/netwide-assembler/nasm.git
synced 2024-11-27 08:10:07 +08:00
9 lines
120 B
NASM
9 lines
120 B
NASM
|
section .text
|
||
|
|
||
|
global _start
|
||
|
|
||
|
_start:
|
||
|
mov rdi, 0 ; Exit status
|
||
|
mov rax, 60 ; Exit syscall number
|
||
|
syscall
|