windbg_disassemble
Disassemble machine code at a given address or symbol, displaying a fixed number of instructions or the entire function to aid reverse engineering and debugging.
Instructions
Disassemble code forward. By default shows N instructions at an address; with function=true disassembles the whole function (cdb 'uf').
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| count | No | Number of instructions when function=false | |
| address | No | Address or symbol (default: current IP) | |
| function | No | Disassemble the entire function ('uf') |