home *** CD-ROM | disk | FTP | other *** search
/ ftp.barnyard.co.uk / 2015.02.ftp.barnyard.co.uk.tar / ftp.barnyard.co.uk / cpm / walnut-creek-CDROM / CPM / ZCPR33 / S-Z / VTCAP11.LBR / VTCAPHDR.LZB / VTCAPHDR.LIB
Text File  |  2000-06-30  |  3KB  |  91 lines

  1.     title    TCDB - Written by Terry Pinto     
  2. ;
  3. ; TCDB       
  4. ;
  5. ; This program is a TCAP utility designed to be a database management
  6. ; utility to add, delete, update and view the specifications on each
  7. ; of the terminals in the TCAP files. You may also use it to print or
  8. ; display the entire terminal list.
  9. ;
  10. ; Written by
  11. ;        Terry Pinto
  12. ;        Access Programming RAS
  13. ;        (503) 644-0900 (300/1200 baud) 24 hours
  14. ;        (503) 646-4937 Voice - 6:00pm to 10:00pm ONLY
  15. ;
  16. ; If you have any difficulties or suggestions for TCDB, please contact
  17. ; me at one of the above numbers.
  18. ;
  19. ; Access Programming RAS will only offer support for versions that have
  20. ; been cleared through this system. These will be the only official 
  21. ; releases. If you have revisions or improvements, please submit the
  22. ; changes to me with complete documentation. These changes will then
  23. ; be reviewed for a future release.
  24. ;
  25. ; Thank you for your support...
  26. ;
  27. ; HISTORY
  28. ;
  29. ;    Version 1.1    08/23/87    Fixed Z option to allow abort
  30. ;                    with carriage return.
  31. ;                    ==> Suggested by Ken Reid
  32. ;    Version 1.0    05/21/87    Original release.
  33. ;
  34. ;-----------------------------------------------------------------------
  35. ;
  36. yes    equ    1
  37. no    equ    not yes
  38.  
  39. ; Set VERSION and CREDITS to YES to display the version number and the
  40. ; the author's credits on the display during program execution.
  41.  
  42. version    equ    yes    ; yes - show version number
  43. credits    equ    yes    ; yes - show authors name
  44.  
  45. ; VER and REV reflect the current version number and revision number
  46. ; of the program under development. These levels should be changed to
  47. ; reflect any minor revisions or major changes to the program structure.
  48. ; The dates (MONTH DAY YEAR) will reflect the date of the last modification
  49. ; to the program. If you make changes in the program, be sure to change
  50. ; the version/revision number and the date of the last modification 
  51. ; and send the changes to the author.
  52.  
  53. ver     equ    1    ; major version number
  54. rev    equ    1    ; minor revision number
  55. upd    equ    0    ; update number
  56.  
  57. month    equ    08    ; Date of last modification
  58. day    equ    23
  59. year    equ    87
  60.     
  61. ; Set Z3ENV to the address of you Z3 environment discriptor. If you
  62. ; do not use ZCPRx, set this value to 0. Set TCPDRV to the drive where
  63. ; you keep your TCAP files (A=0 B=1 etc.). Set TCPUSR to the user area
  64. ; of your TCAP files.
  65.  
  66. z3env    equ    0d000h        ; set to 0h if you do not use ZCPRx
  67. tcap    equ    z3env+80h    ; location of TCAP 
  68. tcpdrv    equ    0        ; TCAP drive A=0 B=1 etc.
  69. tcpusr    equ    14        ; TCAP user
  70.  
  71. dfcb1     equ    05ch    ; default FCB1
  72. dfcb2    equ    06ch    ; default FCB2
  73.  
  74. bell    equ    07h    ; bell character
  75. bksp    equ    08h    ; backspace
  76. tab    equ    09h    ; tab
  77. lf    equ    0ah    ; line feed
  78. cr    equ    0dh    ; carriage return
  79. esc    equ    1bh    ; escape character
  80. del    equ    7fh    ; delete
  81. ctle    equ    'E'-'@'    ; ^E
  82. ctlq    equ    'Q'-'@'    ; ^Q
  83. ctlr    equ    'R'-'@'    ; ^R
  84. ctlw    equ    'W'-'@'    ; ^W
  85. ctlx    equ    'X'-'@'    ; ^X
  86.  
  87. tbuf    equ    80h    ; default temporary buffer
  88.  
  89. ;-------------------------------------------------------------------------
  90.  
  91.