| 279 | } |
| 280 | |
| 281 | void DisassembleWidget::jumpToCursor() |
| 282 | { |
| 283 | if (auto* const session = currentRunningSession()) { |
| 284 | const auto address = m_disassembleWindow->selectedAddress(); |
| 285 | Q_ASSERT(!address.isEmpty()); |
| 286 | session->jumpToMemoryAddress(address); |
| 287 | } |
| 288 | } |
| 289 | |
| 290 | void DisassembleWidget::runToCursor() |
| 291 | { |
nothing calls this directly
no test coverage detected