Files
open-simh.simtools/crossassemblers/macro11/tests/test-listing.mac
Olaf Seibert 0e54092d45 Merge commit 'c311f6a175fd52da171795bc093762f4eba4c136' into macro11-v0.7.2
Update to latest released version of macro-11.

Command run: git subtree pull --prefix=crossassemblers/macro11 ../macro11 macro11-v0.7.2
(should be equivalent to git subtree pull --prefix=crossassemblers/macro11 git://gitlab.com/Rhialto/macro11.git macro11-v0.7.2)
2022-06-08 20:52:56 +02:00

23 lines
509 B
Plaintext

;;;;;;
;
; Test the (so far very basic) .LIST and .NLIST directives.
;
; This should get listed (list_level 1)
.nlist
; This should NOT get listed (list_level 0)
.list
; This should get listed (list_level 1)
.list
; This should get listed (list_level 2)
.nlist
; This should get listed (list_level 1)
.nlist
; This should NOT get listed (list_level 0)
.nlist
; This should NOT get listed (list_level -1)
.list
; This should NOT get listed (list_level 0)
.list
; This should get listed (list_level 1)