nasm/test/nasmformat.asm

15 lines
184 B
NASM
Raw Normal View History

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