home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / jsage / znode3 / uploads / ctlcv11b.lbr / CTRLCVT.LZB / CTRLCVT.LIB
Encoding:
Text File  |  1993-06-07  |  1.5 KB  |  63 lines

  1. ;+
  2. ;       CTRLCVT.LIB
  3. ;       Equates used for CTRLCVT.Z80.
  4. ;
  5. ;-
  6.  
  7. ;+
  8. ;       Section 0:
  9. ;       Equates used internally by CTRLCVT.
  10. ;       These should not be changed by the configuring user.
  11. ;-
  12. VERSION EQU     11
  13. MODF    EQU     2
  14. ;
  15. CR      EQU     13
  16. LF      EQU     10
  17. ;
  18. FCB     EQU     5CH
  19. DMA     EQU     80H
  20. ;
  21. DEBUG   EQU     FALSE           ; TRUE or FALSE from Z3BASE.LIB
  22. ;+
  23. ;       Section 1a:
  24. ;       Buffer size.
  25. ;-
  26. BUFSIZE EQU     2048
  27. ;+
  28. ;       Section 1b:
  29. ;       Heap start.
  30. ;
  31. ;       Select an absolute location to start the heap. I select 2000H as it
  32. ;       is safely low. Adjust this based on the buffer size above and your
  33. ;       TPA space.
  34. ;-
  35. HEAPSTART EQU    2000H
  36. ;+
  37. ;       Section 2:
  38. ;       Control flagging character and mask area.
  39. ;
  40. ;       Set the flagging character to whatever is appropriate for the
  41. ;       circumstance. I select the '^' character.
  42. ;       I select 9FH for the control mask in accordance with DEC standard
  43. ;       control characters. You may wish to use 1FH instead.
  44. ;-
  45. CTRLFLAG EQU    '^'
  46. CTRLMASK EQU    10011111B
  47. ;+
  48. ;       Section 3:
  49. ;       Verbosity flag.
  50. ;
  51. ;       Set this flag when you desire full informational and help capabilities.
  52. ;-
  53. VERBOSE EQU     TRUE
  54. ;+
  55. ;       Section 4:
  56. ;       ZCPR33 Optimization flag.
  57. ;
  58. ;       When set and ZCPR33 is present, code will be compiled in such a manner
  59. ;       to optimize error handling.
  60. ;-
  61. Z33     EQU     TRUE
  62. in accordance with DEC standard
  63. ;       control charact