Merge pull request #4131 from aldelaro5/memoryViewer-memChecks-improvements

Add the configuration of how a memory check is added via the memory window
This commit is contained in:
Scott Mansell
2016-09-15 10:46:07 +12:00
committed by GitHub
9 changed files with 56 additions and 10 deletions

View File

@ -28,7 +28,9 @@ public:
virtual void AddWatch(unsigned int /*address*/) {}
virtual void ClearAllMemChecks() {}
virtual bool IsMemCheck(unsigned int /*address*/) { return false; }
virtual void ToggleMemCheck(unsigned int /*address*/) {}
virtual void ToggleMemCheck(unsigned int /*address*/, bool /*read*/, bool /*write*/, bool /*log*/)
{
}
virtual unsigned int ReadMemory(unsigned int /*address*/) { return 0; }
virtual void WriteExtraMemory(int /*memory*/, unsigned int /*value*/, unsigned int /*address*/) {}
virtual unsigned int ReadExtraMemory(int /*memory*/, unsigned int /*address*/) { return 0; }