diff --git a/test/listing.asm b/test/listing.asm new file mode 100644 index 000000000..abe4902df --- /dev/null +++ b/test/listing.asm @@ -0,0 +1,35 @@ +%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