view nasmbuild/nasm-2.13rc9/test/nasmformat.asm @ 10656:d14f0b444087

<oerjan> ` cd wisdom; mv {\xc3\x84,\xc3\xa4}; mv \'{\xc3\x85,\xc3\xa5}\'
author HackBot
date Thu, 13 Apr 2017 03:46:40 +0000
parents 587a0a262d22
children
line wrap: on
line source

;Testname=obj; Arguments=-fobj -onasmfomat.o; Files=stdout stderr nasmfomat.o
;Testname=bin; Arguments=-fbin -onasmfomat.o; Files=stdout stderr nasmfomat.o
;Testname=rdf; Arguments=-frdf -onasmfomat.o; Files=stdout stderr nasmfomat.o

%if __OUTPUT_FORMAT__ == 'bin'

db 'This is binary format file'

%elif __OUTPUT_FORMAT__ == 'obj'

db 'This is object format file'

%else

db 'This is some other format file'

%endif