os/kernel/cstart.asm
2018-12-13 17:19:11 -06:00

7 lines
53 B
NASM

global _start
extern main
_start:
call main
ret