mirror of
https://github.com/netwide-assembler/nasm.git
synced 2024-11-21 03:14:19 +08:00
93548c2de2
RDOFF has been deprecated as it has unfixable problems, and has been announced that it will be killed off in NASM 2.16. This deletes it once and for all. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
17 lines
340 B
NASM
17 lines
340 B
NASM
;Testname=obj; Arguments=-fobj -onasmfomat.o; Files=stdout stderr nasmfomat.o
|
|
;Testname=bin; Arguments=-fbin -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
|