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

Debugging

When I do the debugging, sometimes the disassembly window automatically toggles. What could be the reason? I am not an expert. So can anybody help?

Parents
  • If you happen to stop it at a point where there is no corresponding 'C' source (eg, inside some library function), then there's nothing else for the debugger to show - so it shows the disassembly.

    Sometimes the source might exist, but the debugger can't work that out - eg, due to optimisation.

    Sometimes it does just seem to do it to annoy you!

Reply
  • If you happen to stop it at a point where there is no corresponding 'C' source (eg, inside some library function), then there's nothing else for the debugger to show - so it shows the disassembly.

    Sometimes the source might exist, but the debugger can't work that out - eg, due to optimisation.

    Sometimes it does just seem to do it to annoy you!

Children