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 / MBUG / MBUG169.ARC / Z80DOS.LBR / Z80DOSM.ZY0 / Z80DOSM.ZY0
Text File  |  1979-12-31  |  1KB  |  39 lines

  1. ; Z80DOS - Z80 Disk Operating System
  2. ;
  3. ; Version 1.0 - 25 Oct. 87 by Fred Haines, based on 
  4. ; Z80DOS.Z80 Version 1.0 - 05 Sept. 87 by Carson Wilson
  5. ;
  6. ; This modification of the original Z80DOS.Z80 uses a different
  7. ; header, Z80DHDRM.LIB instead of Z80HDR.LIB, and adds the include
  8. ; file Z80DMOD.Z8O below - this is the former BIOS routine, now
  9. ; moved to the DOS area.  This modification gives Z80DOS time and
  10. ; date stamping without any BIOS modification at all.  All code,
  11. ; except for the actual time buffer, is now located in the DOS area.  
  12.  
  13. ;
  14. ; Main Module
  15. ;
  16.  
  17.     maclib z80dhdrm.lib    ; Operating system addresses, options, 
  18.                 ; ..and equates
  19.  
  20.     include    z80dchar.z80    ; Jump table, character I/O routines,
  21.                 ; ..error routines
  22.  
  23.     include    z80ddisk.z80    ; Return CP/M version, disk routines
  24.  
  25.  
  26.     include    z80dtime.z80    ; Time routines, DOS exit routines,
  27.                 ; ..RAM area
  28.  
  29.  
  30. ; include file below added by Fred Haines 10-25-87 to eliminate
  31. ; necessity for modifying the BIOS.  Patch puts BIOS time routine 
  32. ; into the Z80DOS area.
  33.  
  34.     include z80dmod.z80      
  35.  
  36.  
  37. ; END Z80DOSM.Z80
  38.  
  39.