Added controller support
This commit is contained in:
parent
e5cc1565fd
commit
f4e6198a99
15 changed files with 310 additions and 6 deletions
src/debugger
|
@ -10,6 +10,7 @@
|
|||
#include "Disassembler.hpp"
|
||||
#include "MemoryViewer.hpp"
|
||||
#include "NametableViewer.hpp"
|
||||
#include "ControllerPortViewer.hpp"
|
||||
|
||||
Debugger::Debugger(Bus* bus) :
|
||||
bus(bus)
|
||||
|
@ -20,6 +21,7 @@ Debugger::Debugger(Bus* bus) :
|
|||
windows.push_back(disassembler);
|
||||
windows.push_back(new MemoryViewer(this, bus));
|
||||
windows.push_back(new NametableViewer(this, bus));
|
||||
windows.push_back(new ControllerPortViewer(this, &bus->controllerPort));
|
||||
}
|
||||
|
||||
Debugger::~Debugger()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue