mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-07-24 10:25:42 -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>
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
|