home *** CD-ROM | disk | FTP | other *** search
/ Power Programming / powerprogramming1994.iso / progtool / disasm / dasm80.arc / DASM80.DOC < prev    next >
Text File  |  1986-07-22  |  1KB  |  38 lines

  1. DASM80 is an MS DOS 2.0 or greater Intel hex file disassembler.  The
  2. syntax for invocation is:
  3.  
  4. drive:DASM80 <hexfile> <sourcefile>
  5.  
  6. where drive: is the drive where the dissasembler is stored, <hexfile>
  7. is the name of an existing object file in the Intel hex format, and
  8. <sourcefile> is the name of the file to which the dissassembled code is
  9. to be written.
  10.  
  11. Upon completion, <sourcefile> will contain the mnemonics associated with
  12. the opcodes found in <hexfile>.  If an undefined opcode is encountered,
  13. it is assigned the mnemonic "?".  An "ORG" statement is generated at the
  14. address of the first non-NOP instruction.  If subsequent  NOP's (opcode=00H)
  15. are encountered, the dissasembler will generate an "ORG" statement to the
  16. address of the next non-NOP instruction.
  17.  
  18.  
  19. The following is a brief description of each file on this disk:
  20.  
  21. DASM80.DOC is this file.
  22.  
  23. MAKEFILE is a definitions file for use with the MASM MAKE utility.
  24.  
  25. DASM80.ASM is the source file for the main module of DASM80.
  26.  
  27. MNEM80.ASM is the source file for the mnemonic lookup tables for DASM80.
  28.  
  29. DASM80.EXE is the executable program file.
  30.  
  31. ALL80.SRC is a source file that contains all source mnemonics for
  32. 8080/8085 microprocessors.
  33.  
  34. TEST80.BAT is a BATCH file that invokes DASM80.EXE to produce TEST80.SRC
  35. from ALL80.HEX.
  36.  
  37. TESTZ80.SRC is a source file that was created by dissassembling ALLZ80.HEX.
  38.