nasm/test/nasmformat.asm
H. Peter Anvin 93548c2de2 rdoff: kill it off
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>
2022-11-07 16:49:13 -08:00

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