.TITLE ~module~ - ~descr~ .IDENT /~rel~~lev~/ .REM | *+ ~module~ - ~descr~ File:~file~ Version: ~rel~~lev~ Author: Last Edit: 22-MAY-1985 17:19:00 Last Update: ~upddate~ ~updtime~ ~purpose~ *- | .LIBRARY /LB:[1,1]GLMAC.MLB/ .MCALL qiow$s, exit$s .SBTTL LOCAL DATA .psect ldat,d,lcl,con ; ; use this psect for scratch storage - it is not guaranteed to be saved ; across calls to the module ; .psect data,d,gbl,con ; ; use this psect for module-specific data which must be retained across ; calls to the module ; msg: .ASCII /fu,foo,fubar!/ msgl = .-msg .even .PSECT ; code goes in the blank psect .SBTTL Main start: qiow$s #io.wvb,#5,#1,,,,<#msg,#msgl,#40> exit$s .end start