home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_300 / 348_01 / readme.d48 < prev    next >
Text File  |  1991-05-02  |  2KB  |  58 lines

  1.  
  2.             8048 Disassembler
  3.         Copyright (c) 1991, Michael G. Panas
  4.             All Rights Reserved
  5.  
  6.  
  7. This package is designed to create a source file that can be reassembled
  8. from an 8048 binary input file. The output file is a text file containing
  9. Intel 8048 Mnemonics. This file can be assembled by any Intel type assembler
  10. for the 8048, such as a48 from William Colley III. The input file is
  11. pure binary data, hex data is not supported yet.
  12.  
  13. To invoke the disassembler type:
  14.  
  15.     dis48 [input_file output_file]
  16.  
  17. Command line args are optional and if omitted, the disassembler will prompt
  18. the user for "input file" and "output file". The output file will be created
  19. if it does not exist or it will be overwritten if it does exist. Note in the
  20. interactive mode a blank line (ie; just a cr) will exit the disassembler
  21. without creating or overwriting the output file.
  22.  
  23. The following source files are provided in the distribution:
  24.     dis48.h
  25.     dis48.c
  26.     dis48tbl.c
  27. Both UNIX and DOS executables are provided:
  28.     dis48        UNIX
  29.     dis48.exe    DOS
  30.  
  31. Several host machines are supported by recompiling the source. MS-DOS 3.3 and
  32. UNIX V Rel 3.2 have been used as host computers. Under DOS you will need 
  33. Microsoft C Ver 5.1 to compile the sources. Under UNIX use the standard
  34. compiler and linker.
  35.  
  36. Microsoft C compilers:
  37. Make sure "MSC" is defined in the dis48.h header file, then type:
  38.  
  39.     cl dis48.c
  40.  
  41. UNIX compilers:
  42. Make sure "MSC" is commented out in the dis48.h header file, then type:
  43.  
  44.     make dis48
  45.  
  46.  
  47. If there are any comments, bug fixes, enhancements, etc. I can be reached at:
  48.  
  49. Michael G. Panas
  50. 24567 Leona Drive
  51. Hayward, CA. 94542
  52.  
  53. Email: panas@wyse.com
  54.  
  55. NOTE:
  56. This is a copyrighted work, all commercial rights are reserved. Use for
  57. individuals is granted, provided the copyright messages are not removed.
  58.