Reputation: 121
Is it possible to increase the number of auto disassembled lines that GDB
(with pwndbg
) shows when stepping through an executable? I have tried using display x $pc
but it doesn't fit in with the rest of the debugger.
Currently looks like:
Ideally would look like this(Except functional):
Upvotes: 1
Views: 574
Reputation: 33727
You can use the winheight
command. This should increase the size of the disassembly by twenty lines:
winheight asm +20
Upvotes: 2