initial commit
This commit is contained in:
commit
ff8389a76b
46 changed files with 9118 additions and 0 deletions
20
src/debugger/NametableViewer.hpp
Normal file
20
src/debugger/NametableViewer.hpp
Normal file
|
@ -0,0 +1,20 @@
|
|||
#pragma once
|
||||
|
||||
#include "DebugWindow.hpp"
|
||||
|
||||
class Bus;
|
||||
|
||||
class NametableViewer :
|
||||
public DebugWindow
|
||||
{
|
||||
public:
|
||||
NametableViewer(Bus* bus);
|
||||
|
||||
virtual void OnRender() override;
|
||||
|
||||
private:
|
||||
void DisplayNametable(uint8_t index);
|
||||
|
||||
private:
|
||||
Bus* bus;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue