c [-w][bptadr] where:
| bptadr | specifies a single breakpoint. The breakpoint is removed when execution halts at this specified address. |
| -w | Don't wait (imon and imon95 only). |
Invoking the c command with no arguments causes the program execution to continue from the address specified in the epc register.
As an option, a single temporary breakpoint may be specified. The temporary breakpoint is removed when execution halts. 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. |