13 lines
86 B
NASM
13 lines
86 B
NASM
|
section ".text"
|
||
|
|
||
|
section '.text'
|
||
|
|
||
|
section $foo
|
||
|
|
||
|
global $Test
|
||
|
|
||
|
$Test:
|
||
|
mov ax, 0
|
||
|
ret
|
||
|
|