There is no such command available in CodeWarrior for HCS12 V3.1 debugger.
What you can do here is:
- Set a temporary breakpoint at the beginning of the instruction (Same as a
Run to Cursor with the GUI)
- Wait for the application to stop
- GO to continue execution if you do not want to actually stop
- Write your additional commands
This is encoded as follows in the command file:
BS timaISR T // Set temporary breakpoint at function timaISR entry point
WAIT ;s // Wait till application stops (on teh breakpoint)
GO // Continue execution of teh application
// Insert additional commands here.
I hope this helps.