Files
Custom-Operating-System/libs/libc/sysdeps/unix/x86/crt0.S

15 lines
184 B
ArmAsm

section .text
extern main
extern exit
extern _init
extern _deinit
global _start:function (_start.end - _start)
_start:
call _init
call main
push eax
call _deinit
call exit
.end: