Reworking the memory management & fixing a bug in the memory viewer goto

This commit is contained in:
Zoe Roux
2021-02-03 23:43:07 +01:00
parent 0b28719f41
commit 874c21b0fd
29 changed files with 295 additions and 307 deletions
+2 -2
View File
@@ -17,13 +17,13 @@ namespace ComSquare::Debugger
struct BusLog {
BusLog(bool write,
uint24_t addr,
std::shared_ptr<Memory::AMemory> &accessor,
std::shared_ptr<Memory::IMemory> &accessor,
std::optional<uint8_t> oldData,
uint8_t newData);
bool write;
uint24_t addr;
std::shared_ptr<Memory::AMemory> accessor;
std::shared_ptr<Memory::IMemory> accessor;
std::optional<uint8_t> oldData;
uint8_t newData;
};