The following is a list of the KPRO II "Terminal" attributes and control sequences. Cursor Control - ---------------- cursor left (bs) ............. 08h cursor right ................. 0ch cursor down (lf) ............. 0ah cursor up .................... 0bh home cursor .................. 1eh clear screen & home cursor ... 1ah carriage return .............. 0dh Cursor Positioning - -------------------- Escape Sequence (ESC+"=") .... 1bh,3dh Cursor Rows .................. 0-23 Cursor Columns ............... 0-79 Positioning Sequence: In MBASIC ... PRINT chr$(27)+"="+chr$(20+row)+chr$(20+col); Line Insert/Delete - -------------------- Line Insert (ESC+"E") ........ 1bh,45h Line Delete (ESC+"R") ........ 1bh,52h Clear to End of Screen/Line - ----------------------------- Clear EOL (Ctl-X) ............ 18h Clear EOS (Ctl-W) ............ 17h Set Greek or ASCII - -------------------- Set ASCII (ESC+"A") .......... 1bh,41h Set Greek (ESC+"G") .......... 1bh,47h After Setting Greek, lower case letters will print as the Greek Alphabet. 11/14/82 def