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
  • Usually, if everything else is OK, the only reason the debugger doesn't open the source is if it can't figure out where the source is. You can use SET SRC = path in the debugger to specify the path to the source file. This can also occur if you have several source files (in different folders) with the same names.

    Jon

Reply
  • Usually, if everything else is OK, the only reason the debugger doesn't open the source is if it can't figure out where the source is. You can use SET SRC = path in the debugger to specify the path to the source file. This can also occur if you have several source files (in different folders) with the same names.

    Jon

Children