os/kernel/start.asm

7 lines
53 B
NASM

extern main
global _start
_start:
call main
ret