15 lines
314 B
C++
15 lines
314 B
C++
#pragma once
|
|
|
|
#include "ModuleInstance.hpp"
|
|
#include "RegisterGroup.hpp"
|
|
|
|
namespace Targets::TargetDescription
|
|
{
|
|
struct Module
|
|
{
|
|
std::string name;
|
|
std::map<std::string, ModuleInstance> instancesMappedByName;
|
|
std::map<std::string, RegisterGroup> registerGroupsMappedByName;
|
|
};
|
|
}
|