home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / simtel / sigm / vols000 / vol006 / concod.lib < prev    next >
Text File  |  1984-04-29  |  1KB  |  48 lines

  1. .sbttl /Control Code Definitions/
  2. .PAGE
  3. .radix 8
  4. ;****************************************
  5. ;
  6. ; CONTROL CODE definitions
  7. ;
  8. CCNUL=    "J"&1FH    ;"NULIN" BEGINNING of next line
  9. CCRET=    "M"&1FH    ;"RETURN" Beginning of SAME line
  10. CCFF=    "L"&1FH    ;"FORM" Beginning of NEXT page
  11. CCHT=    "I"&1FH    ;"HTAB" Unless tabs set MODULO 8
  12. CCESC=    33    ;"ESCAPE" used + additional character
  13. CCBS=    "H"&1FH    ;"BACKSPACE" to overprint, not delete
  14. CCETX=    "C"&1FH    ; ^C SYSTEM RETURN one LEVEL
  15. CCCAN=    "X"&1FH    ; ^X  "CANCEL" current input
  16. CCSO=    "N"&1FH    ; ^N shift out (alternate char. set)
  17. CCSI=    "O"&1FH    ; ^O shift in (normal char. set)
  18. ;
  19. CCCUF=    34    ; ^| FS cursor right
  20. CCCUB=    36    ; ^^ RS cursor left
  21. CCCUU=    37    ; ^_ US cursor up
  22. CCCUD=    35    ; ^] GS cursor down
  23. ;
  24. ;
  25. CHESC0=    CCESC    ; ESC+ESC clear options
  26. CHHTS=    "1"
  27. CHHTC=    "2"
  28. CHHN=    "3"    ; ESC+3 highlight on
  29. CHHF=    "4"    ; ESC+4 highlight off
  30. CHLCF=    "W"    ; ESC+W local copy off
  31. CHLCN=    "X"    ; ESC+X local copy on
  32. CHPH=    "H"    ; ESC+H pointer home
  33. CHCSC=    "J"    ; ESC+J clear screen
  34. CHCLC=    "K"    ; ESC+K clear line from curs
  35. CHSPIX=    "N"    ; ESC+N graphic mode off
  36. CHRPIX=    "O"    ; ESC+O graphic mode on
  37. CHSU=    "S"    ; ESC+S scroll up
  38. CHSD=    "T"    ; ESC+T scroll down
  39. CHSCRN=    "_"    ; ESC+_ scroll mode
  40. CHPAGN=    "^"    ; ESC+^ page mode
  41. CHCURF=    "Y"    ; ESC+Y no cursor
  42. CHCURN=    "Z"    ; ESC+Z cursor wanted
  43. ;
  44. CCSOH=    "A"&1FH    ; ^A User Option (eg.: ROM Monitor)
  45. CCSTX=    "B"&1FH    ; ^B User Option (eg.: Warm Boot)
  46. CHADEL=    07FH    ; "DELETE" may echo as "BACKSPACE"
  47. ;
  48.