aboutsummaryrefslogtreecommitdiffstats
path: root/test/br3392661.asm
blob: 9a349d19180c2fb14da9d94f7991a81cb2b8e609 (plain)
1
2
3
4
5
6
7
8
section .text

global _start

_start:
    mov rdi, 0   ; Exit status
    mov rax, 60  ; Exit syscall number
    syscall