www.digitalmars.com [Home] [Search] [CTG] [RTL] [IDDE]
Last update Jun 3, 2003

DUMPOBJ: Dump Object Files in Hex

Displays the contents of an object file, showing the type and contents of each record. For information about debugging formats, refer to the Microsoft document, CodeView 4.0 Symbolic Debug Information Specification. For details about object file formats, refer to the Microsoft document The Microsoft Object Module Format, available from Microsoft.

Intel OMF, Microsoft COFF, and linux ELF object file formats are supported. dumpobj does not disassemble the object code, for that use obj2asm. For converting files from COFF to OMF see coff2omf.

dumpobj commands have the following format:

	dumpobj [-p] filename[.obj] 
filename is the name of the object file about which you want information. Its default extension is .obj.
-p Pretty print output.

DUMPEXE: Dump Exe Files

Dumps the contents of an executable file in a readable format. The following executable file formats are automatically detected and handled:
MZ
16 bit DOS executable file format.
NE
16 bit Windows and 16 bit OS/2 executable file format.
PE
32 bit Windows portable executable file format.
LX
32 bit OS/2 2.0 executable file format.
dumpexe commands have the following format:
	dumpexe filename
filename is the name of the executable file to dump.

Copyright © 1995-2003 Digital Mars. All Rights Reserved.