repo.or.cz
/
nasm.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
General push for x86-64 support, dubbed 0.99.00.
[nasm.git]
/
test
/
nasmformat.asm
blob
5b4dc25e60fcb265183ea9ed551b5cbb941bd832
1
2
%
if __OUTPUT_FORMAT__
==
'bin'
3
4
db
'This is binary format file'
5
6
%
elif __OUTPUT_FORMAT__
==
'obj'
7
8
db
'This is object format file'
9
10
%
else
11
12
db
'This is some other format file'
13
14
%
endif