home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / z / zsim20.zip / Z80DOS.CHG < prev    next >
Text File  |  1992-01-12  |  1KB  |  55 lines

  1. changes made for installing z80dos:
  2.  
  3. changes in z80dhdr.lib:
  4.  
  5. base equ 0e400h
  6.  
  7. RTC     equ     true            ;Real time clock
  8. BIOStim equ     BIOS+4EH
  9.  
  10. ResDsk  equ     1       ; CP/M default is disk A for resets
  11. Options equ     00000000B               ; Enable public file and delay
  12.  
  13.  
  14. Assembling and creating Z80DOS.SYS (first boot original CP/M):
  15.  
  16. Z80MR Z80DOS
  17.  
  18. MOVCPM 64 * *
  19. SAVE 34 CPM64.SYS
  20. DDT CPM64.SYS
  21.  M1180,1185,100
  22.  F1180,1F7F,0
  23.  Iz80dos.hex
  24.  R2580
  25.  M100,105,1180
  26.  G0
  27. SAVE 34 Z80DOS.SYS
  28.  
  29. Transfer Z80DOS.SYS to MSDOS.
  30.  
  31. The making of SUPERDOS.SYS is analoguous.
  32.  
  33.  
  34.  
  35. changes in ZCPR.ASM:
  36.  
  37. CPRLOC  EQU     0E400H  ;FILL IN WITH BDOSLOC SUPPLIED VALUE
  38. FENCE   EQU     ':'     ;SEP CHAR BETWEEN DIR FILES
  39.  
  40. insert the fellowing after the first command in routine PRIN1:
  41.  
  42.   ANI 7FH
  43.  
  44. This is because ZCPR outputs characters with bit 7 = 1 .
  45.  
  46. MAC ZCPR
  47. DDT SUPERDOS.SYS
  48.  Izcpr.hex
  49.  R2580
  50.  ; now you might overwrite dr's copyright message too
  51.  G0
  52. SAVE 34 Z80DOS.SYS
  53.  
  54.  
  55.