open-simh.simtools/tests/test-include.mac
Olaf Seibert 137a9db671 More tests. Refine string delimiter test for .ASCII a bit.
Make the delimiters for .INCLUDE and .LIBRARY accept the same
delimiters (= is not disallowed, it just makes the line look like
an assignment).
2015-06-04 12:11:14 +02:00

18 lines
452 B
Plaintext

;;;;;
;
; Test some delimiters for the .INCLUDE directive
;
.include "incl.mac"
.include /incl.mac/
.include \incl.mac\
.include ?incl.mac?
.include >incl.mac>
; these are errors: (in MACRO V05.05, some terminate the assembler)
.include <incl.mac>
.include <incl.mac<
.include =incl.mac= ; looks like assignment
.include :incl.mac: ; looks like a label