We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
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?
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
Could it also happen when using the top optimisations, where it gets very tricky to know which 'C' source line corresponds to a particular assembler instruction? Especially with things like common-tail merging, Linker code packing, etc...?