| 328 | } |
| 329 | |
| 330 | void RegisterView::contextCopyTop() |
| 331 | { |
| 332 | const int categoryIndex = ui.registerTabs->currentIndex(); |
| 333 | const u128 val = cpu().getRegister(categoryIndex, m_selectedRow); |
| 334 | QApplication::clipboard()->setText(FilledQStringFromValue(val.hi, 16)); |
| 335 | } |
| 336 | |
| 337 | void RegisterView::contextCopyBottom() |
| 338 | { |
nothing calls this directly
no test coverage detected