Files
BloomPatched/src/Targets/TargetDescription/AddressSpace.hpp

19 lines
393 B
C++
Raw Normal View History

2021-04-04 21:04:12 +01:00
#pragma once
#include <cstdint>
2021-04-04 21:04:12 +01:00
#include "MemorySegment.hpp"
namespace Targets::TargetDescription
2021-04-04 21:04:12 +01:00
{
struct AddressSpace
{
2021-04-04 21:04:12 +01:00
std::string id;
std::string name;
std::uint32_t startAddress;
std::uint32_t size;
2021-04-04 21:04:12 +01:00
bool littleEndian = true;
std::map<MemorySegmentType, std::map<std::string, MemorySegment>> memorySegmentsByTypeAndName;
};
}