Reputation: 4353
In gdb if I type n
,the next c statement will be run.
But how to instruct it to run the next assembly statement?
Upvotes: 2
Views: 1048
Reputation: 15849
By typing nexti (ni) and stepi (si) instead of next (n) and step (s).
Upvotes: 5