Constructor for TargetMemoryAddressRange struct

This commit is contained in:
Nav
2021-10-09 19:17:39 +01:00
parent 356c06f4f3
commit a3717bcffa

View File

@@ -17,6 +17,11 @@ namespace Bloom::Targets
{
std::uint32_t startAddress = 0;
std::uint32_t endAddress = 0;
TargetMemoryAddressRange() = default;
TargetMemoryAddressRange(std::uint32_t startAddress, std::uint32_t endAddress)
: startAddress(startAddress), endAddress(endAddress) {};
};
};
using TargetMemoryBuffer = std::vector<unsigned char>;