| 335 | } |
| 336 | |
| 337 | void RegisterView::contextCopyBottom() |
| 338 | { |
| 339 | const int categoryIndex = ui.registerTabs->currentIndex(); |
| 340 | const u128 val = cpu().getRegister(categoryIndex, m_selectedRow); |
| 341 | QApplication::clipboard()->setText(FilledQStringFromValue(val.lo, 16)); |
| 342 | } |
| 343 | |
| 344 | void RegisterView::contextCopySegment() |
| 345 | { |
nothing calls this directly
no test coverage detected