mirror of
https://github.com/open-simh/simtools.git
synced 2026-01-14 07:39:37 +00:00
18 lines
383 B
Plaintext
18 lines
383 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=
|
|
.include :incl.mac:
|