language: Assembler (nasm-2.07)
date: 119 days 22 hours ago
link:
visibility: public
1
2
3
4
5
6
7
8
9
10
11
12
13
14
global _start
 
section .data
 
section .text
 
_start:
        je              exit
 
exit:
        mov             eax, 01h                ; exit()
        xor             ebx, ebx                ; errno
        int             80h