Part Number: TMS570LS0432
Tool/software: Code Composer Studio
Hello, during the debugging I need to jump to the desired line of the source code (the same as "Move to Line" in CSS editor) using Java Script with DSS API (calls of GEL is possible). I have not found the required instruction within API. Of course the address of the line could be seen within object code and then set PC register to it, using something like
debugSession.expression.evaluate("PC = 0x0001DF64")
But this approach is not suitable for my goals. I do not know how to receive the address of the line within the Java Script.
So is it possible to do only knowing the line number in the source code file?
Thanks in advance!