StupidOS/lib/csu/crt0.asm

19 lines
147 B
NASM
Raw Permalink Normal View History

2024-03-24 08:44:14 +00:00
format COFF
use32
public _start
extrn main
extrn exit
section '.text' code
public _start
_start:
xor ebp, ebp
call main
call exit