Starting testing

This commit is contained in:
Melefo
2020-02-05 16:15:21 +01:00
parent 4bb0310dca
commit bc65afb405
11 changed files with 90 additions and 18 deletions

View File

@@ -28,10 +28,10 @@ namespace ComSquare::Memory
if (!handler) {
std::cout << "Unknown memory accessor for address " << std::hex << addr << ". Using open bus." << std::endl;
return this->_openbus;
return this->_openBus;
}
uint8_t data = handler->read(addr - handler->getStart());
this->_openbus = data;
this->_openBus = data;
return data;
}