; control words for 2645 terminal 11/17/07 ; ; turns on the text display plane OCTAL DEFINE +TD 33 PCHR 25144 PWRD 62507 PWRD ;33 52 144 145 107 END ; ; turns off the text display plane OCTAL DEFINE -TD 33 PCHR 25144 PWRD 63107 PWRD ;33 52 144 146 107 END ; ; directs console output to the text display OCTAL DEFINE >TD 33 PCHR 25144 PWRD 72107 PWRD ;33 52 144 164 107 END ; ; turns off the graphics plane OCTAL DEFINE -GD 33 PCHR 25144 PWRD 62107 PWRD ;33 52 144 144 107 END ; ; turns on the graphics plane OCTAL DEFINE +GD 33 PCHR 25144 PWRD 61507 PWRD ;33 52 144 143 107 END ; ; redirects console output to the graphics plane OCTAL DEFINE >GD 33 PCHR 25144 PWRD 71507 PWRD ;33 52 144 163 107 END ; ; initializes graphics terminal to normal text mode ; this can be made autostarting, RENAME *GT !GT DEFINE *GT +TD >TD -GD END ; CONSOLE