Tool/software:
Hi,
I developed a bootloader, it works when I load it in CSS debug perspective.
My goal is to automate this process.
I would like:
(1) to load hex file to RAM,
(2) start its execution from specific RAM address.
How to make step [2]?
[Edit] I found the solution:
debugSession.memory.loadProgram( filename ); debugSession.memory.writeRegister( "PC", 0x10000 ); debugSession.target.runAsynch();
Regards,
Piotr Romaniuk