A basic memory viewer has been created

This commit is contained in:
Anonymus Raccoon
2020-02-18 00:45:13 +01:00
parent 1bbf9cfe77
commit 92e48db363
13 changed files with 196 additions and 75 deletions
+2 -2
View File
@@ -13,7 +13,7 @@
#include "APU/APU.hpp"
#include "Renderer/IRenderer.hpp"
#ifdef DEBUGGER_ENABLED
#include "Debugger/RamViewer.hpp"
#include "Debugger/MemoryViewer.hpp"
#endif
namespace ComSquare
@@ -22,7 +22,7 @@ namespace ComSquare
class SNES {
#ifdef DEBUGGER_ENABLED
private:
std::shared_ptr<Debugger::RamViewer> _ramViewer;
std::shared_ptr<Debugger::MemoryViewer> _ramViewer;
#endif
public:
//! @brief Cartridge containing instructions (ROM).