14 lines
151 B
NASM
14 lines
151 B
NASM
format COFF
|
|
|
|
section '.text' code
|
|
|
|
public main
|
|
public _start
|
|
_start:
|
|
main:
|
|
int 0x2A
|
|
|
|
section '.data' data
|
|
|
|
INCLUDE 'builtins.inc'
|