2021-04-04 21:04:12 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "ModuleInstance.hpp"
|
|
|
|
|
#include "RegisterGroup.hpp"
|
|
|
|
|
|
2021-05-31 01:01:14 +01:00
|
|
|
namespace Bloom::Targets::TargetDescription
|
2021-04-04 21:04:12 +01:00
|
|
|
{
|
2021-05-31 01:01:14 +01:00
|
|
|
struct Module
|
|
|
|
|
{
|
2021-04-04 21:04:12 +01:00
|
|
|
std::string name;
|
|
|
|
|
std::map<std::string, ModuleInstance> instancesMappedByName;
|
|
|
|
|
std::map<std::string, RegisterGroup> registerGroupsMappedByName;
|
|
|
|
|
};
|
|
|
|
|
}
|