mirror of
https://github.com/netwide-assembler/nasm.git
synced 2024-11-21 03:14:19 +08:00
ee8edad40b
Suggested-by: <mae.bdf@outlook.com> Link: https://bugzilla.nasm.us/show_bug.cgi?id=3392661 Signed-off-by: Chang S. Bae <chang.seok.bae@intel.com>
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
|