wut/crt/crt0.S

11 lines
95 B
ArmAsm

.extern main
.extern exit
.global _start
_start:
bl main
b exit
.global __eabi
__eabi:
blr