compiler
compiler

Reputation: 4363

How to call next assembly in gdb?

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: 1049

Answers (1)

Milan
Milan

Reputation: 15849

By typing nexti (ni) and stepi (si) instead of next (n) and step (s).

Upvotes: 5

Related Questions