expose mapping range

This commit is contained in:
Mahmood - Zer0xFF 2021-01-07 22:21:16 +00:00
parent 24b2aee982
commit 0c2964914c
2 changed files with 7 additions and 2 deletions

View file

@ -34,6 +34,11 @@ void CMemoryMap::InsertInstructionMap(uint32 start, uint32 end, void* pointer, u
InsertMap(m_instructionMap, start, end, pointer, key);
}
const CMemoryMap::MemoryMapListType& CMemoryMap::GetInstructionMaps()
{
return m_instructionMap;
}
const CMemoryMap::MEMORYMAPELEMENT* CMemoryMap::GetReadMap(uint32 address) const
{
return GetMap(m_readMap, address);