Creating a main and a cartridge reader

This commit is contained in:
AnonymusRaccoon
2020-01-27 18:18:12 +01:00
parent 9d7bb1b6a5
commit 3b96a6f44d
9 changed files with 184 additions and 27 deletions
+12
View File
@@ -0,0 +1,12 @@
//
// Created by anonymus-raccoon on 1/24/20.
//
#include "CPU.hpp"
namespace ComSquare::CPU
{
CPU::CPU(std::shared_ptr<ComSquare::MemoryBus> bus)
: _bus(bus)
{ }
}