mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-11 12:49:06 +01:00
12 lines
231 B
ArmAsm
12 lines
231 B
ArmAsm
%include "header.s"
|
|
|
|
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
|