Cleaning up all debuggers

This commit is contained in:
Anonymus Raccoon
2020-03-23 23:07:15 +01:00
parent 75f9ffad8e
commit 09cd825bed
19 changed files with 266 additions and 105 deletions
+5
View File
@@ -97,4 +97,9 @@ namespace ComSquare::Memory
}
// TODO should implement HiRom.
}
bool MemoryBus::isDebugger()
{
return false;
}
}
+3
View File
@@ -54,6 +54,9 @@ namespace ComSquare
//! @param addr The address you want to look for.
//! @return The components responsible for the address param or nullptr if none was found.
std::shared_ptr<IMemory> getAccessor(uint24_t addr);
//! @brief Return true if the Bus is overloaded with debugging features.
virtual bool isDebugger();
};
}
}