mirror of
https://github.com/open-simh/simtools.git
synced 2026-02-09 09:42:51 +00:00
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)
23 lines
509 B
Plaintext
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)
|