MCPcopy Create free account
hub / github.com/PCSX2/pcsx2 / contextRunToCursor

Method contextRunToCursor

pcsx2-qt/Debugger/DisassemblyView.cpp:213–220  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

211}
212
213void 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
222void DisassemblyView::contextJumpToCursor()
223{

Callers

nothing calls this directly

Calls 2

getCpuTypeMethod · 0.80
resumeCpuMethod · 0.80

Tested by

no test coverage detected