home *** CD-ROM | disk | FTP | other *** search
- ;+
- ; CTRLCVT.LIB
- ; Equates used for CTRLCVT.Z80.
- ;
- ;-
-
- ;+
- ; Section 0:
- ; Equates used internally by CTRLCVT.
- ; These should not be changed by the configuring user.
- ;-
- VERSION EQU 11
- MODF EQU 2
- ;
- CR EQU 13
- LF EQU 10
- ;
- FCB EQU 5CH
- DMA EQU 80H
- ;
- DEBUG EQU FALSE ; TRUE or FALSE from Z3BASE.LIB
- ;+
- ; Section 1a:
- ; Buffer size.
- ;-
- BUFSIZE EQU 2048
- ;+
- ; Section 1b:
- ; Heap start.
- ;
- ; Select an absolute location to start the heap. I select 2000H as it
- ; is safely low. Adjust this based on the buffer size above and your
- ; TPA space.
- ;-
- HEAPSTART EQU 2000H
- ;+
- ; Section 2:
- ; Control flagging character and mask area.
- ;
- ; Set the flagging character to whatever is appropriate for the
- ; circumstance. I select the '^' character.
- ; I select 9FH for the control mask in accordance with DEC standard
- ; control characters. You may wish to use 1FH instead.
- ;-
- CTRLFLAG EQU '^'
- CTRLMASK EQU 10011111B
- ;+
- ; Section 3:
- ; Verbosity flag.
- ;
- ; Set this flag when you desire full informational and help capabilities.
- ;-
- VERBOSE EQU TRUE
- ;+
- ; Section 4:
- ; ZCPR33 Optimization flag.
- ;
- ; When set and ZCPR33 is present, code will be compiled in such a manner
- ; to optimize error handling.
- ;-
- Z33 EQU TRUE
- in accordance with DEC standard
- ; control charact