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 / BEEHIVE / OS / Z80D24SR.ARC / Z80DOS24.Z80 < prev    next >
Text File  |  1991-02-10  |  2KB  |  61 lines

  1. ;
  2. ; Z80DOS - Z80 Disk Operating System
  3. ;
  4. ; Version 2.4    Maskable disk reset's using variable fixdrv
  5. ;        Now can assemble with Z80MR if Z80MR equate
  6. ;        set to -1.
  7. ;        Gene Nolan 4/9/89
  8. ;
  9. ;
  10. ;------------------------------------------------------
  11. ;
  12. ; Version 2.3    Fast directory lookup, ZRL compatible - 11/4/88 Gene Nolan
  13. ;
  14. ;------------------------------------------------------
  15. ;
  16. ; Version 2.0a - BETA TEST VERSION - 6 Nov 87 by Carson Wilson
  17. ;
  18. ; Main Module
  19. ;
  20.  
  21.  
  22. ; Remove the comments from the following 6 lines if making a ZRL form for NZCOM
  23. ;name    DOSZ82
  24. ;COM    /_ID_/
  25. ;    db    13,10,13,10
  26. ;    db    'You are now loading up the Z80DOS234.ZRL file'
  27. ;    db    13,10,13,10,0
  28. ;    maclib z34cmn
  29.  
  30. ; If you are using Z80MR, change the following to -1 and the -1 to 0
  31.  
  32. Z80MR    EQU    0        ; We do it this way because of Z80MR
  33. NOZ80MR    EQU    -1
  34.  
  35.     IF NOZ80MR
  36.     maclib    Z80DHDR.LIB    ; Operating system addresses, options,
  37.                 ; ..and equates
  38.     INCLUDE Z80DCHAR.Z80    ; Jump table, character I/O routines,
  39.                 ; ..error routines
  40.  
  41.     INCLUDE Z80DDISK.Z80    ; Return CP/M version, disk routines
  42.  
  43.  
  44.     INCLUDE Z80DTIME.Z80    ; Time routines, DOS exit routines,
  45.      ENDIF
  46.  
  47.     IF Z80MR
  48. *INCLUDE Z80DHDR.LIB    ; Operating system addresses, options,
  49.                 ; ..and equates
  50. *INCLUDE Z80DCHAR.Z80    ; Jump table, character I/O routines,
  51.                 ; ..error routines
  52.  
  53. *INCLUDE Z80DDISK.Z80    ; Return CP/M version, disk routines
  54.  
  55.  
  56. *INCLUDE Z80DTIME.Z80    ; Time routines, DOS exit routines,
  57.     ENDIF                ; ..RAM area
  58.  
  59. ; END Z80DOS.Z80
  60.  
  61.