waf/playground/nasm/test.s

10 lines
210 B
ArmAsm
Raw Normal View History

2012-07-28 10:50:13 +02:00
section .text
global _start
_start:
int 80h ; Call the kernel
mov eax,1 ; The system call for exit (sys_exit)
mov ebx,0 ; Exit with return code of 0 (no error)
int 80h