Adding a global goto but it still doesn't work with rectangle shadows

This commit is contained in:
Anonymus Raccoon
2020-02-25 02:35:07 +01:00
parent 4437df4666
commit 298f02890e
11 changed files with 91 additions and 14 deletions

View File

@@ -23,4 +23,14 @@ namespace ComSquare::Memory
{
return this->_initial->write(addr, data);
}
bool MemoryShadow::isMirror()
{
return true;
}
std::shared_ptr<IMemory> MemoryShadow::getMirrored()
{
return this->_initial;
}
}