Making the CPU debugger's bus read silent

This commit is contained in:
Anonymus Raccoon
2020-03-24 19:25:33 +01:00
parent a3c406db9d
commit 256fea8955
5 changed files with 31 additions and 30 deletions

View File

@@ -22,7 +22,7 @@ namespace ComSquare::Memory
return *it;
}
uint8_t MemoryBus::read(uint24_t addr)
uint8_t MemoryBus::read(uint24_t addr, bool)
{
std::shared_ptr<AMemory> handler = this->getAccessor(addr);