Continue execution from specified address, or from current one if not specified.
(self, args: str)
| 255 | @save_regs |
| 256 | @liveness_check |
| 257 | def do_continue(self, args: str) -> None: |
| 258 | """Continue execution from specified address, or from current one if |
| 259 | not specified. |
| 260 | """ |
| 261 | |
| 262 | address, *_ = args.split() if args else ('',) |
| 263 | address = try_read_int(address) |
| 264 | |
| 265 | if address is None: |
| 266 | address = self.cur_addr |
| 267 | |
| 268 | qdb_print(QDB_MSG.INFO, f'continuing from {address:#010x}') |
| 269 | |
| 270 | self._run(address) |
| 271 | |
| 272 | def do_backward(self, args: str) -> None: |
| 273 | """Step backwards to the previous location. |
nothing calls this directly
no test coverage detected