.TITLE RATHLP .IDENT "V20.0" .ENABL LC ;----------------------------------------------------------------------------- ; ; *************************** ; * R A T H L P . M A C * ; *************************** ; ; This is the subroutine which displays help info for RATFOR/RT-11 V20. ; It is activated when the user uses the "/H" switch in the command ; line. It's operation should be obvious to even the novice MACRO ; programmer. ; ; Bob Denny ; Creative System Design Co. ; 3452 E. Foothill Blvd. Suite 601 ; Pasadena, Ca. 91107 ; (213) 355-6836 ; ;----------------------------------------------------------------------------- .PSECT USER$I ;PUT THIS IN THE "PURE" USER P-SECTION .NLIST BEX HLPTXT: .ASCII \This is RATFOR/RT-11 Prototype version Y20.4.\<15><12> .ASCII \The command line has the usual RT-11 syntax:\<15><12> .ASCII \outfile,listfile=infile{,infile,...}\<15><12> .ASCII \The following switches may be applied to any file:\<15><12> .ASCII <15><12> .ASCII <11>\/C - Compress FORTRAN output, no blanks\<15><12> .ASCII <11>\/D{:n} - Process debug lines to level "n".\<15><12> .ASCII <11>\ If :n not given, n defaults to 1\<15><12> .ASCII <11>\/H - Display this help message\<15><12> .ASCII <11>\/L:FOR - Include generated FORTRAN in listing\<15><12> .ASCII <11>\/L:DEF - List symbolic constant (DEFINE) table\<15><12> .ASCII <11>\/L:LC - Output gen'ed FORTRAN in lower case\<15><12> .ASCII <11>\ List RATFOR comments in lower case\<15><12> .ASCII <11>\/L:CND - List code inside unsatisfied IFDEF's\<15><12> .ASCII <11>\/R - Retain DEFINE's from last cmd line\<15><12> .ASCII <11>\/F - Automatically chain to FORTRAN\<15><12> .ASCII <11>\/X - Compile-Link-GO\<15><12> .ASCII <15><12> .ASCIZ \The "L:xxx" options may be chained, e.g., /L:xxx:yyy\<15><12> .EVEN .MCALL .RCTRLO .PRINT RATHLP:: .RCTRLO ;CANCEL ANY ^O'S. .PRINT #HLPTXT ;DISPLAY THE HELP TEXT RTS PC ;BACK TO F4 .END