Somewhat more clever way to generate the %use guard macros
[nasm/autotest.git] / test / nasmformat.asm
blob0c3f0a7b6909a9206c7ab21219c74aee01de1dad
1 ;Testname=obj; Arguments=-fobj -onasmfomat.o; Files=.stdout .stderr nasmfomat.o
2 ;Testname=bin; Arguments=-fbin -onasmfomat.o; Files=.stdout .stderr nasmfomat.o
3 ;Testname=rdf; Arguments=-frdf -onasmfomat.o; Files=.stdout .stderr nasmfomat.o
5 %if __OUTPUT_FORMAT__ == 'bin'
7 db 'This is binary format file'
9 %elif __OUTPUT_FORMAT__ == 'obj'
11 db 'This is object format file'
13 %else
15 db 'This is some other format file'
17 %endif