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

Method debugRaise

gui/qt/debugger.cpp:275–284  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

273}
274
275void MainWindow::debugRaise() {
276 debug_clear_basic_step();
277 debugEnable();
278 debugPopulate();
279 connect(m_shortcutStepIn, &QShortcut::activated, this, &MainWindow::stepIn);
280 connect(m_shortcutStepOver, &QShortcut::activated, this, &MainWindow::stepOver);
281 connect(m_shortcutStepNext, &QShortcut::activated, this, &MainWindow::stepNext);
282 connect(m_shortcutStepOut, &QShortcut::activated, this, &MainWindow::stepOut);
283 ui->lcd->disableBlend();
284}
285
286void MainWindow::debugExecute(uint32_t offset, uint8_t cmd) {
287 m_useSoftCom = true;

Callers

nothing calls this directly

Calls 2

debug_clear_basic_stepFunction · 0.85
disableBlendMethod · 0.80

Tested by

no test coverage detected