nasm/test/nasmformat.asm
Stanislav Karchebny 5e8f36611f Consistency fix
2003-09-25 11:28:45 +00:00

14 lines
180 B
NASM

%if __NASM_FORMAT__ == 'bin'
db 'This is binary format file'
%elif __NASM_FORMAT__ == 'obj'
db 'This is object format file'
%else
db 'This is some other format file'
%endif