waf

FORK: waf with some random patches
git clone https://git.neptards.moe/neptards/waf.git
Log | Files | Refs | README

test.s (231B)


      1 %include "header.s"
      2 
      3 section .text
      4 	global _start
      5 
      6 _start:
      7 	int 80h              ; Call the kernel
      8 
      9 	mov eax,1            ; The system call for exit (sys_exit)
     10 	mov ebx,0            ; Exit with return code of 0 (no error)
     11 	int 80h