Updated data size requirements for fields in TDF address space data structure

This commit is contained in:
Nav
2021-06-26 03:47:58 +01:00
parent ad18ff94fa
commit 0433d6c351

View File

@@ -10,8 +10,8 @@ namespace Bloom::Targets::TargetDescription
{ {
std::string id; std::string id;
std::string name; std::string name;
std::uint16_t startAddress; std::uint32_t startAddress;
std::uint16_t size; std::uint32_t size;
bool littleEndian = true; bool littleEndian = true;
std::map<MemorySegmentType, std::map<std::string, MemorySegment>> memorySegmentsByTypeAndName; std::map<MemorySegmentType, std::map<std::string, MemorySegment>> memorySegmentsByTypeAndName;
}; };