home *** CD-ROM | disk | FTP | other *** search
/ Oakland CPM Archive / oakcpm.iso / sigm / vol141 / kproterm.txt < prev    next >
Encoding:
Text File  |  1984-04-29  |  1.1 KB  |  53 lines

  1.  
  2.  
  3. The following is a list of the KPRO II  "Terminal" attributes
  4. and control sequences.
  5.  
  6. Cursor Control -
  7. ----------------
  8.     cursor left (bs) .............    08h
  9.     cursor right .................    0ch
  10.     cursor down (lf) .............    0ah
  11.     cursor up ....................     0bh
  12.     home cursor ..................    1eh
  13.     clear screen & home cursor ...    1ah
  14.     carriage return ..............    0dh
  15.     
  16. Cursor Positioning -
  17. --------------------
  18.  
  19.     Escape Sequence    (ESC+"=") ....     1bh,3dh             
  20.     Cursor Rows ..................  0-23
  21.     Cursor Columns ...............    0-79
  22.     Positioning Sequence:
  23.      
  24.         In MBASIC ...    
  25.     
  26.           PRINT chr$(27)+"="+chr$(20+row)+chr$(20+col);
  27.  
  28.  
  29. Line Insert/Delete -
  30. --------------------
  31.  
  32.     Line Insert (ESC+"E") ........    1bh,45h
  33.     Line Delete (ESC+"R") ........  1bh,52h
  34.  
  35. Clear to End of Screen/Line -
  36. -----------------------------
  37.  
  38.     Clear EOL (Ctl-X) ............    18h
  39.     Clear EOS (Ctl-W) ............  17h
  40.  
  41. Set Greek or ASCII -
  42. --------------------
  43.  
  44.     Set ASCII (ESC+"A") ..........  1bh,41h 
  45.     Set Greek (ESC+"G") ..........  1bh,47h
  46.     After Setting Greek, lower case letters will print as
  47.     the Greek Alphabet.
  48.  
  49.                 11/14/82
  50.                 def
  51.  
  52.     
  53.