Implementing a rectangle memory accesor for the Cartridge (for the LoRom)

This commit is contained in:
AnonymusRaccoon
2020-01-29 18:03:29 +01:00
parent 589252b34e
commit 6429e9a284
17 changed files with 234 additions and 74 deletions
+1 -1
View File
@@ -6,7 +6,7 @@
namespace ComSquare
{
SNES::SNES(const std::shared_ptr<MemoryBus> &bus, const std::string &romPath) :
SNES::SNES(const std::shared_ptr<Memory::MemoryBus> &bus, const std::string &romPath) :
cpu(new CPU::CPU(bus)),
ppu(new PPU::PPU()),
apu(new APU::APU()),