Format: resume [address_expression]
This command is only for use within a breakpoint command list. (See "Command list".) It resumes program execution at the given address_expression, after all the breakpoint commands have been executed. See "Address expressions". If no address_expression is specified then the address that the breakpoint is set at is used. For example, to skip over line 5 in your program, you could use the following, which will stop before line 5, and then resume execution at line 6:
b 5 {resume 6}
resume will continue the program in the same manner that the breakpoint was encountered. For example, if the program was performing an S instruction when the breakpoint was encountered, the S command will be resumed.