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

program source text in the debugger

I've been unsuccessful in making the program source text appear in the dScope debugger window. It gives me only the assembly version of my application program. I've checked out the 'Commands' menu in the dScope window and that is set to 'view high level' option. Can somebody of you help me out.

Regards,
Philvin

Parents
  • The other thing to watch out for is where your source files are located. If the source files are in a different directory than the executable, you have to tell DSCOPE where the source is.

    set src = d:\x27\app
    set src = d:\x27\kernel
    set src = d:\x27\hardware
    set src = d:\x27\logical

    Page 248 of the Dscope manual gives a description of the SET command.

Reply
  • The other thing to watch out for is where your source files are located. If the source files are in a different directory than the executable, you have to tell DSCOPE where the source is.

    set src = d:\x27\app
    set src = d:\x27\kernel
    set src = d:\x27\hardware
    set src = d:\x27\logical

    Page 248 of the Dscope manual gives a description of the SET command.

Children