added breakpoints

This commit is contained in:
Lauchmelder 2022-03-01 03:34:19 +01:00
parent 53a7baf91f
commit 1220631e7e
No known key found for this signature in database
GPG key ID: C2403C69D78F011D
23 changed files with 303 additions and 220 deletions

View file

@ -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;
};