mirror of
https://github.com/rkujawa/rk65c02.git
synced 2024-12-11 18:49:16 +00:00
Make runtime disassembly optional.
This commit is contained in:
parent
23492e6533
commit
de1ab25427
@ -32,6 +32,7 @@ rk65c02_init(bus_t *b)
|
||||
|
||||
e.bps_head = NULL;
|
||||
e.trace_head = NULL;
|
||||
e.runtime_disassembly = false;
|
||||
|
||||
return e;
|
||||
}
|
||||
@ -103,7 +104,7 @@ rk65c02_exec(rk65c02emu_t *e)
|
||||
return;
|
||||
}
|
||||
|
||||
/* if disassembly-when-running enabled */
|
||||
if (e->runtime_disassembly)
|
||||
disassemble(e->bus, e->regs.PC);
|
||||
|
||||
i = instruction_fetch(e->bus, e->regs.PC);
|
||||
|
@ -69,7 +69,7 @@ struct rk65c02emu {
|
||||
bool irq; /* interrupt request line state, true is asserted */
|
||||
|
||||
breakpoint_t *bps_head; /* pointer to linked list with breakpoints */
|
||||
|
||||
bool runtime_disassembly; /* disassemble code when emulator is running */
|
||||
bool trace; /* tracing mode enable/disable */
|
||||
trace_t *trace_head; /* pointer to linked list with trace log */
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user