acadia/zion/usr/crt0.s

11 lines
88 B
ArmAsm

.text
.global _start
_start:
call main
call _exit
_exit:
mov $1, %rdi
syscall