MCPcopy Create free account
hub / github.com/CE-Programming/CEmu / debugStep

Method debugStep

gui/qt/debugger.cpp:100–109  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

98}
99
100void MainWindow::debugStep(int mode) {
101 if (mode == DBG_RUN_UNTIL) {
102 debug_step(mode, m_runUntilAddr);
103 } else {
104 disasm.base = static_cast<int32_t>(cpu.registers.PC);
105 disasmGet(true);
106 debug_step(mode, static_cast<uint32_t>(disasm.next));
107 }
108 emu.resume();
109}
110
111void MainWindow::debugImportFile(const QString &file) {
112 if (file.isEmpty()) {

Callers

nothing calls this directly

Calls 3

debug_stepFunction · 0.85
disasmGetFunction · 0.85
resumeMethod · 0.80

Tested by

no test coverage detected