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