Reenabling the CPU debugger

This commit is contained in:
Zoe Roux
2021-07-06 12:45:27 +02:00
parent 6693c30df2
commit f189821764
34 changed files with 681 additions and 572 deletions
+5
View File
@@ -144,6 +144,11 @@ namespace ComSquare::Debugger
return this->_bus.peek(addr);
}
uint8_t MemoryBusDebug::peek_v(uint24_t addr)
{
return this->_bus.peek_v(addr);
}
void MemoryBusDebug::write(uint24_t addr, uint8_t data)
{
std::optional<uint8_t> value = this->peek(addr);