os/kernel/start.asm

9 lines
93 B
NASM

extern main
extern __stdio_init
global _start
_start:
call __stdio_init
call main
ret