mirror of
https://github.com/open-simh/simtools.git
synced 2026-01-17 00:32:52 +00:00
git-subtree-dir: crossassemblers/macro11 git-subtree-mainline: fc2c8875ca614c989a594d4cf266a9d4e1c98d1e git-subtree-split: 2a14ffe2519589011ffc4050d5d4fd6591fb4c3c command was: git subtree add --prefix=crossassemblers/macro11 git://github.com/Rhialto/macro11.git master
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
|