/DISASM

Print the disassembly of code sections in the DUMPBIN output.

Syntax

/DISASM{:[BYTES|NOBYTES]}

Arguments

BYTES
Includes the instruction bytes together with the interpreted opcodes and arguments in the disassembly output. This is the default option.

NOBYTES
Does not include the instruction bytes in the disassembly output.

Remarks

The /DISASM option displays disassembly of code sections in the file. It uses debug symbols if they are present in the file.

/DISASM should only be used on native, not managed, images. The equivalent tool for managed code is ILDASM.

Only the /HEADERS DUMPBIN option is available for use on files produced by the /GL (Whole program optimization) compiler option.

See also

DUMPBIN Options