TITLE "hello.a -- a broken hello world program" USE "hawk.macs" USE "monitor.h" EXT UNUSED S START HELLO: ASCII "Hello World!",0 ALIGN 2 START: LIL R2,UNUSED ; initialize stack pointer LIL R3,HELLO ; parameter to display string LIL R1,DSPST JSRS R1,R1 ; call monitor's display string routine LIL R1,EXIT JSRS R1,R1 ; call monitor's exit routine END