mirror of
https://github.com/netwide-assembler/nasm
synced 2026-08-26 16:23:04 -04:00
A simple test for tweaking the list options from the source code. Signed-off-by: H. Peter Anvin (Intel) <hpa@zytor.com>
35 lines
703 B
NASM
35 lines
703 B
NASM
%pragma list options +t
|
|
times 16 db '.'
|
|
db 10
|
|
db __?LIST_OPTIONS?__, 10
|
|
db __?LIST_OPTIONS_DEFAULT?__, 10
|
|
|
|
%pragma list options *t
|
|
times 16 db '.'
|
|
db 10
|
|
db __?LIST_OPTIONS?__, 10
|
|
db __?LIST_OPTIONS_DEFAULT?__, 10
|
|
|
|
%pragma list options -"t" "-bd"
|
|
times 16 db '.'
|
|
db 10
|
|
db __?LIST_OPTIONS?__, 10
|
|
db __?LIST_OPTIONS_DEFAULT?__, 10
|
|
|
|
%pragma list options -! +__?LIST_OPTIONS_DEFAULT?__
|
|
times 16 db '.'
|
|
db 10
|
|
db __?LIST_OPTIONS?__, 10
|
|
db __?LIST_OPTIONS_DEFAULT?__, 10
|
|
|
|
%pragma list options +"t"
|
|
times 16 db '.'
|
|
db 10
|
|
db __?LIST_OPTIONS?__, 10
|
|
db __?LIST_OPTIONS_DEFAULT?__, 10
|
|
|
|
%pragma list options *!
|
|
times 16 db '.'
|
|
db 10
|
|
db __?LIST_OPTIONS?__, 10
|
|
db __?LIST_OPTIONS_DEFAULT?__, 10
|