mirror of
https://github.com/open-simh/simtools.git
synced 2026-01-13 23:36:03 +00:00
Make the delimiters for .INCLUDE and .LIBRARY accept the same delimiters (= is not disallowed, it just makes the line look like an assignment).
18 lines
452 B
Plaintext
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
|