The c command makes program execution continue after a breakpoint has stopped program execution.
c [bptadr]
where:
bptadr | specifies a single breakpoint. The breakpoint is removed when execution halts at this specified address. |
Invoking the c command with no arguments causes the program execution to continue from the address specified in the current pc, CPC register.
As an option, a single temporary breakpoint may be specified. The temporary breakpoint is removed when execution stops. The temporary breakpoint is removed if another breakpoint stops program execution first.
Examples of the c command follow.
PMON> c | Continue execution until exit or a regular breakpoint is encountered. |
PMON> c a0020104 | Continue execution until 0xa0020104 or a regular breakpoint is encountered. |
Navigation: Document Home | Document Contents | Document Index