nasm/test/br3392661.asm
Chang S. Bae ee8edad40b test: Add BR3392661
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>
2020-04-22 00:08:28 +00:00

9 lines
120 B
NASM

section .text
global _start
_start:
mov rdi, 0 ; Exit status
mov rax, 60 ; Exit syscall number
syscall