d0p1
9a5b474ad2
Some checks failed
Build / test (push) Has been cancelled
Docs / test (push) Has been cancelled
18 lines
147 B
NASM
18 lines
147 B
NASM
format COFF
|
|
use32
|
|
|
|
public _start
|
|
|
|
extrn main
|
|
extrn exit
|
|
|
|
section '.text' code
|
|
|
|
public _start
|
|
_start:
|
|
|
|
xor ebp, ebp
|
|
call main
|
|
|
|
call exit
|
|
|