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

Function debug_inst_start

core/debug/debug.c:212–219  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

210}
211
212void debug_inst_start(void) {
213 uint32_t pc = cpu.registers.PC;
214 debug.addr[pc] |= DBG_INST_START_MARKER;
215 if (debug.step && !(debug.addr[pc] & DBG_MASK_EXEC) && pc != debug.tempExec) {
216 debug.step = debug.stepOver = false;
217 debug_open(DBG_STEP, cpu.registers.PC);
218 }
219}
220
221void debug_inst_fetch(void) {
222 uint32_t pc = cpu.registers.PC;

Callers 1

cpu_inst_startFunction · 0.85

Calls 1

debug_openFunction · 0.85

Tested by

no test coverage detected