mirror of
https://github.com/zoriya/ComSquare.git
synced 2026-05-22 22:45:52 +00:00
Reworking the memory management & fixing a bug in the memory viewer goto
This commit is contained in:
@@ -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;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user