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

A51: Single step though include

I have some existing 8051 assembly that includes source routines from other files using $INCLUDE. When I try to single step through the code in the included file with the simulator it skips over the included code. How do I step thorough this code? Is there a setting I need to change?

Thanks,
Chris

Parents
  • Is there a setting I need to change?

    No. You'll just have to stop doing this:

    includes source routines from other files using $INCLUDE

    Including actual source code (as opposed to declarations) often causes this kind of problem. So don't do that.

Reply
  • Is there a setting I need to change?

    No. You'll just have to stop doing this:

    includes source routines from other files using $INCLUDE

    Including actual source code (as opposed to declarations) often causes this kind of problem. So don't do that.

Children