| 211 | } |
| 212 | |
| 213 | void DisassemblyView::contextRunToCursor() |
| 214 | { |
| 215 | const u32 selectedAddressStart = m_selectedAddressStart; |
| 216 | Host::RunOnCPUThread([cpu = &cpu(), selectedAddressStart] { |
| 217 | CBreakPoints::AddBreakPoint(cpu->getCpuType(), selectedAddressStart, true); |
| 218 | cpu->resumeCpu(); |
| 219 | }); |
| 220 | } |
| 221 | |
| 222 | void DisassemblyView::contextJumpToCursor() |
| 223 | { |
nothing calls this directly
no test coverage detected