This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Debugger Question

How do you get the debugger to allow you
to single step by "C" instructions? I do not
want the disassembly window - for what I am
trying to do, debugging in "C" is desired.
The disassembly window keeps popping up, I keep
killing it, and I can't find a way to change
modes... Suggestions?

Parents
  • Are you single-stepping thru code that has C source or are youstepping thru the startup code (or other assembly code)?

    When you start the debugger if you type g,main you should see the main C function of your program and you should be able to step thru it.

    If you can't step thru your C code and if you never see the PC arrow on the left side of the window (in your C code) maybe you don't have debug information enabled.

    Jon

Reply
  • Are you single-stepping thru code that has C source or are youstepping thru the startup code (or other assembly code)?

    When you start the debugger if you type g,main you should see the main C function of your program and you should be able to step thru it.

    If you can't step thru your C code and if you never see the PC arrow on the left side of the window (in your C code) maybe you don't have debug information enabled.

    Jon

Children