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 / BDOS / DOSPLSOR.ARK / DOS.LIB < prev    next >
Text File  |  1986-10-16  |  1KB  |  27 lines

  1. ; Customization equates for DOS+ system
  2. ;
  3. ; Define memory size base for DOS+
  4. msize    equ    63;    kbytes RAM available. Not used in DOS+
  5. ;
  6. ; Define memory. Max. TPA is ramlow+0100h to base+0800h
  7. ramlow    equ    0;    Available memory starts here
  8. base    equ    (msize-7)*1024;    of CCP area - multiple of 256 only
  9. ;
  10. ; Define path location
  11. pathat    equ    046H;    Location of Path Buffer. 0 disables path
  12. ; NOTE:    if non-zero coldboot must zero the byte at this address
  13. ;    to prevent a random path being followed.
  14. ;
  15. ; Define timer locations and operations
  16. timeat    equ    040h;    Location of time buffer or routine. 0 = none
  17. tfunct    equ    false;    true if routine, false if address
  18. acctim    equ    true;    true enables file access time stamps
  19. ;
  20. ; Define BREAK capabilities to interrupt runaway programs.
  21. usrbrk    equ    true;    true enables user break on 'brkchr'
  22. dciobk    equ    true;    true enables user break on DCIO calls
  23. brkchr    equ    0;    The keyboard input to break (if enabled)
  24. ;
  25. debug    equ    false;    true for copy executable under an existing
  26. ;            system.  false for normal system
  27. ╢ì