MACRO-11 was supported on all DEC PDP-11 operating systems. PDP-11 Unix systems also include an assembler (named as), structurally similar to MACRO-11, but with different syntax and fewer features. The MACRO-11 assembler (and programs created by it) could also run under the RSX-11 compatibility mode of OpenVMS on VAX.[1]
.TITLEHELLOWORLD.MCALL.TTYOUT,.EXITHELLO::MOV#MSG,R1 ;STARTING ADDRESS OF STRING1$:MOVB(R1)+,R0;FETCH NEXT CHARACTERBEQDONE;IF ZERO, EXIT LOOP.TTYOUT;OTHERWISE PRINT ITBR1$;REPEAT LOOPDONE:.EXITMSG:.ASCIZ/Hello,world!/.ENDHELLO
The .MCALL pseudo-op warns the assembler that the code will be using the .TTYOUT and .EXIT macros. The .TTYOUT and .EXIT macros are defined in the standard system macro library to expand to the EMT instructions to call the RT-11 monitor to perform the requested functions.
If this file is HELLO.MAC, the RT-11 commands to assemble, link and run (with console output shown) are as follows:
For a more complicated example of MACRO-11 code, two examples chosen at random are Kevin Murrell's KPUN.MAC, or Farba Research's JULIAN routine. More extensive libraries of PDP-11 code can be found in the Metalab freeware and Trailing Edge archives.[2][3]