mirror of
https://github.com/netwide-assembler/nasm.git
synced 2024-12-15 09:09:58 +08:00
13 lines
153 B
NASM
13 lines
153 B
NASM
|
org 0
|
||
|
%ifndef SEEK
|
||
|
%define SEEK 0
|
||
|
%endif
|
||
|
times SEEK - ($ - $$) nop
|
||
|
jmp near init
|
||
|
|
||
|
%ifndef NUM
|
||
|
%define NUM 9956h
|
||
|
%endif
|
||
|
times NUM - ($ - $$) db 0
|
||
|
init:
|