initial commit
This commit is contained in:
commit
ff8389a76b
46 changed files with 9118 additions and 0 deletions
27
src/debugger/Debugger.hpp
Normal file
27
src/debugger/Debugger.hpp
Normal file
|
@ -0,0 +1,27 @@
|
|||
#pragma once
|
||||
|
||||
#include <vector>
|
||||
#include "DebugWindow.hpp"
|
||||
|
||||
class Bus;
|
||||
|
||||
class Debugger
|
||||
{
|
||||
public:
|
||||
Debugger(Bus* bus);
|
||||
~Debugger();
|
||||
|
||||
bool Update();
|
||||
void Render();
|
||||
|
||||
public:
|
||||
bool isOpen = true;
|
||||
|
||||
private:
|
||||
Bus* bus;
|
||||
bool running = false;
|
||||
bool overrideResetVector = false;
|
||||
uint16_t resetVector = 0x0000;
|
||||
|
||||
std::vector<DebugWindow*> windows;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue