Skip to content
Permalink
8e7ea971bc
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
9 lines (9 sloc) 200 Bytes
; assembly code to end program cleanly
section .data
section .bss
section .text
global _start
_start
mov eax,1 ; Exit system call
mov ebx,0 ; Return value
int 80h ; Interupt to Operating System