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 / ENTERPRS / CPM / UTILS / S / UNARC16S.ARK / READ.ME next >
Text File  |  1987-03-27  |  2KB  |  35 lines

  1. This archive (UNARC16S.ARK) contains the complete source program file,
  2. UNARC.Z80, for version 1.6 of the CP/M UNARC utility.  This file is
  3. provided for informational and private-use purposes only.  Please
  4. observe the copyright notice and restrictions specified at the beginning
  5. of the source program.
  6.  
  7. The program uses Zilog mnemonics, and it may be assembled with either
  8. the Microsoft M80 or SLR Systems' Z80ASM macro assemblers.  (Z80ASM has
  9. several advantages:  Aside from its blinding speed, it permits direct
  10. output to a .COM file, thereby eliminating the need to generate or link
  11. a .REL file.)  For use with other assemblers, some source code changes
  12. will most likely be necessary, particularly for non-macro assemblers.
  13. No special switches are required for linking with Microsoft L80, just:
  14.  
  15.     A>L80 UNARC,UNARC/N/E
  16.  
  17. The source file can generate both the Z80 (UNARC.COM) and 8080/8085
  18. (UNARCA.COM) program versions.  With Z80ASM, this is specified
  19. interactively during assembly by answering "YES" or "NO" to the "Z80 ?"
  20. prompt.  With M80 (which does not provide the .ACCEPT directive of
  21. Z80ASM), the unmodified source program will generate the Z80 version
  22. only.  To generate the non-Z80 version using M80, the file must be
  23. edited to remove the leading semicolon from the following source line:
  24.  
  25. ;Z80    EQU    NO        ; YES for Z80 version, NO for 8080/8085
  26.  
  27. The author makes no apologies for the non-modular nature of the source
  28. code (or for his verbosity or style of formatting), so please don't call
  29. to complain about such trivialities.  Remember:  UNARC.Z80 is being
  30. distributed publicly for your edification and pleasure, NOT so that you
  31. can easily generate modified versions of the program.  As always,
  32. constructive suggestions for improvements are welcomed.  Enjoy!
  33.  
  34.                     -- Bob Freed
  35.