Solving compilation issues

This commit is contained in:
Anonymus Raccoon
2020-03-28 14:58:30 +01:00
parent 618c708df6
commit e5fbde350f
5 changed files with 31 additions and 36 deletions
+2 -2
View File
@@ -15,7 +15,7 @@
#ifdef DEBUGGER_ENABLED
#include "Debugger/MemoryViewer.hpp"
#include "Debugger/HeaderViewer.hpp"
#include "Debugger/cgramDebug.hpp"
#include "Debugger/CGramDebug.hpp"
#endif
@@ -30,7 +30,7 @@ namespace ComSquare
//! @brief The window that allow the user to view the cartridge's header.
std::unique_ptr<Debugger::HeaderViewer> _headerViewer;
//! @brief The window that allow the user to view the CGRAM.
std::unique_ptr<Debugger::cgramDebug> _cgramViewer;
std::unique_ptr<Debugger::CGramDebug> _cgramViewer;
#endif
//! @brief The memory bus that map addresses to components.
std::shared_ptr<Memory::MemoryBus> _bus;