| 319 | } |
| 320 | |
| 321 | void MainWindow::setDebugDisasmAddrCol(bool state) { |
| 322 | ui->checkDisasmAddr->setChecked(state); |
| 323 | m_config->setValue(SETTING_DEBUGGER_ADDR_COL, state); |
| 324 | disasm.addr = state; |
| 325 | if (guiDebug) { |
| 326 | if (!disasm.addr) { |
| 327 | disasmUpdate(); |
| 328 | } else { |
| 329 | disasmUpdateAddr(cpu.registers.PC, true); |
| 330 | } |
| 331 | } |
| 332 | } |
| 333 | |
| 334 | void MainWindow::setDebugDisasmImplict(bool state) { |
| 335 | ui->checkDisasmImplict->setChecked(state); |
nothing calls this directly
no outgoing calls
no test coverage detected