mirror of
https://github.com/rodamaral/lsnes.git
synced 2025-04-02 10:42:15 -04:00
22 lines
441 B
C++
Executable file
22 lines
441 B
C++
Executable file
class SMPDebugger : public SMP, public ChipDebugger {
|
|
public:
|
|
bool property(unsigned id, string &name, string &value);
|
|
|
|
function<bool ()> step_event;
|
|
|
|
enum Usage {
|
|
UsageRead = 0x80,
|
|
UsageWrite = 0x40,
|
|
UsageExec = 0x20,
|
|
};
|
|
uint8 *usage;
|
|
uint16 opcode_pc;
|
|
bool opcode_edge;
|
|
|
|
void op_step();
|
|
uint8 op_read(uint16 addr, bool exec);
|
|
void op_write(uint16 addr, uint8 data);
|
|
|
|
SMPDebugger();
|
|
~SMPDebugger();
|
|
};
|