home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / kaypro / kproterm.inf < prev    next >
Text File  |  1985-01-19  |  2KB  |  54 lines

  1. KAYPRO II VIDEO SOFTWARE DRIVER.
  2.  
  3. The KAYPRO II video section was designed to imitate the control sequences of a
  4. Lear-Siegler ADM-3A terminal.  For most commercial software, this means you
  5. can "install" or customize the display characteristics by choosing the ADM=3A
  6. from the menu.  For custome software or those instances where there is no
  7. choice of "ADM-3A" on the menu, the following information may help.
  8.  
  9. The following is a list of the KPRO II  "Terminal" attributes and control
  10. sequences.
  11.  
  12. Cursor Control -
  13. ----------------
  14.         Cursor left (bs) .............  08h     08
  15.         Cursor right .................  0Ch     12
  16.         Cursor down (lf) .............  0Ah     10
  17.         Cursor up ....................  0Bh     12
  18.         Home cursor ..................  1Eh     30
  19.         Clear screen & home cursor ...  1Ah     26
  20.         Carriage return ..............  0Dh     13
  21.         
  22. Cursor Positioning -
  23. --------------------
  24.  
  25.         Escape Sequence (ESC+"=") ....  1Bh,3Dh   27,61
  26.         Cursor Rows ..................  0-23
  27.         Cursor Columns ...............  0-79
  28.         Positioning Sequence:
  29.          
  30.             In MBASIC ...       
  31.         
  32.               PRINT chr$(27)+"="+chr$(20+row)+chr$(20+col);
  33.  
  34.  
  35. Line Insert/Delete -
  36. --------------------
  37.  
  38.         Line Insert (ESC+"E") ........  1Bh,45h   27,69
  39.         Line Delete (ESC+"R") ........  1Bh,52h   27,82
  40.  
  41. Clear to End of Screen/Line -
  42. -----------------------------
  43.  
  44.         Clear EOL (Ctl-X) ............  18h     24
  45.         Clear EOS (Ctl-W) ............  17h     23
  46.  
  47. Set Greek or ASCII -
  48. --------------------
  49.  
  50.         Set ASCII (ESC+"A") ..........  1Bh,41h   27,65
  51.         Set Greek (ESC+"G") ..........  1Bh,47h   27,71
  52.         After Setting Greek, lower case letters will print as
  53.         the Greek Alphabet.
  54.