9 lines
67 B
Plaintext
9 lines
67 B
Plaintext
global _start
|
|
|
|
[bits 32]
|
|
|
|
_start:
|
|
[extern main]
|
|
call main
|
|
jmp $
|