windbg_disassemble
Disassemble code at a specified address or symbol, showing a set number of instructions. Optionally disassemble the entire function to analyze full control flow.
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') |