MCPcopy Create free account
hub / github.com/decaf-emu/decaf-emu / stepOver

Function stepOver

src/libdecaf/src/debug_api/debug_api_controller.cpp:200–211  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

198}
199
200bool
201stepOver(int core)
202{
203 if (core < 0 || core > 2) {
204 return false;
205 }
206
207 auto next = calculateNextInstr(sController.pausedContexts[core], true);
208 cpu::addBreakpoint(next, cpu::Breakpoint::SingleFire);
209 resume();
210 return true;
211}
212
213bool
214hasBreakpoint(VirtualAddress address)

Callers 1

debugStepOverMethod · 0.85

Calls 3

calculateNextInstrFunction · 0.85
addBreakpointFunction · 0.70
resumeFunction · 0.70

Tested by

no test coverage detected