Reputation: 1097
I'm debugging assembly code. I use stepi, but it would go into callees. How to skip the call instructions as using "n" when source code is available?
Upvotes: 1
Views: 904
Reputation: 14711
Pretty simple: nexti is to stepi as next is to step
nexti
stepi
next
step
Upvotes: 2