mirror of
https://github.com/netwide-assembler/nasm
synced 2026-08-26 16:23:04 -04:00
14 lines
180 B
NASM
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
|