Reputation: 33
When I debug a C program and press F11, for example, on strcmp instruction, the debugger open a window with strcmp.asm to continue debugging the strcmp instructions in assembler. How can I stop this behavior ?
Upvotes: 0
Views: 66
Reputation: 213812
F10 = step over functions.
F11 = step into functions.
Press the appropriate button when single-stepping.
Upvotes: 1