Skip to content
Permalink
master
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
; 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