home *** CD-ROM | disk | FTP | other *** search
/ Power Programming / powerprogramming1994.iso / progtool / disasm / dasm48.arc / DASM48.DOC < prev    next >
Text File  |  1986-07-22  |  2KB  |  46 lines

  1. DASM48 is an MS DOS 2.0 or greater Intel hex file disassembler.  The
  2. syntax for invocation is:
  3.  
  4. drive:DASM48 <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. DASM48.DOC is this file.
  22.  
  23. MAKEFILE is a definitions file for use with the MASM MAKE utility.
  24.  
  25. DASM48.ASM is the source file for the main module of DASM48.
  26.  
  27. MNEM48.ASM is the source file for the mnemonic lookup tables for DASM48.
  28.  
  29. DASM48.EXE is the executable object file created by GEN48.BAT.
  30.  
  31. ALL48.SRC is a source file that contains all source mnemonics for
  32. 8048 microprocessors.
  33.  
  34. ALL48.HEX is a hex file that was created using ALL48.SRC.
  35.  
  36. TEST48.BAT is a BATCH file that invokes DASM48.EXE to produce TEST48.SRC
  37. from ALL48.HEX.
  38. TEST48.BAT is a BATCH file that invokes DASM48.EXE to produce TEST48.SRC
  39. from ALL48.HEX, assembles TEST48.SRC, and compares ALLZ48.hex with
  40. TEST48.HEX.  It requires PATHs to an 8048 assembler named ASM48 and a hex
  41. file comparitor named COMPHEX.
  42.  
  43. TEST48.SRC is a source file that was created by dissasembling ALL48.HEX.
  44.  
  45. TEST48.HEX is a hex file that was created by asembling TEST48.HEX.
  46.