Triggering a registers written event when a memory range that contains a register is written to.

This commit is contained in:
Nav
2021-09-11 20:39:31 +01:00
parent b8bf590be7
commit 12a7d58b59
4 changed files with 161 additions and 5 deletions

View File

@@ -13,5 +13,11 @@ namespace Bloom::Targets
OTHER,
};
struct TargetMemoryAddressRange
{
std::uint32_t startAddress = 0;
std::uint32_t endAddress = 0;
};
using TargetMemoryBuffer = std::vector<unsigned char>;
}