xnoe-os/src/programs/entry.asm

11 lines
106 B
NASM

[BITS 32]
_start:
call __setup
call main
push eax
call die
extern die
extern main
extern __setup