added breakpoints
This commit is contained in:
parent
53a7baf91f
commit
1220631e7e
23 changed files with 303 additions and 220 deletions
|
@ -4,6 +4,7 @@
|
|||
#include "DebugWindow.hpp"
|
||||
|
||||
class Bus;
|
||||
class Disassembler;
|
||||
|
||||
class Debugger
|
||||
{
|
||||
|
@ -11,6 +12,7 @@ public:
|
|||
Debugger(Bus* bus);
|
||||
~Debugger();
|
||||
|
||||
bool Frame();
|
||||
bool Update();
|
||||
void Render();
|
||||
|
||||
|
@ -24,4 +26,5 @@ private:
|
|||
uint16_t resetVector = 0x0000;
|
||||
|
||||
std::vector<DebugWindow*> windows;
|
||||
Disassembler* disassembler;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue