nasm/test/nasmformat.asm

18 lines
418 B
NASM
Raw Normal View History

;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
2003-09-24 18:30:56 +08:00
%if __OUTPUT_FORMAT__ == 'bin'
2003-09-24 18:30:56 +08:00
db 'This is binary format file'
%elif __OUTPUT_FORMAT__ == 'obj'
2003-09-24 18:30:56 +08:00
db 'This is object format file'
%else
db 'This is some other format file'
%endif