mirror of
https://github.com/open-simh/simtools.git
synced 2026-01-13 15:27:18 +00:00
22 lines
527 B
Plaintext
22 lines
527 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
|
|
|
|
; this is an error: file does not existst
|
|
|
|
.include "does-not-exist.mac"
|