8 lines
62 B
NASM
8 lines
62 B
NASM
[BITS 32]
|
|
|
|
_start:
|
|
call main
|
|
_loop:
|
|
jmp _loop
|
|
|
|
extern main |