Introduced a generic target description file class with an AVR8 derivation. Moved AVR8 target description files
19 lines
349 B
C++
19 lines
349 B
C++
#pragma once
|
|
|
|
#include <map>
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
#include "RegisterGroup.hpp"
|
|
#include "Signal.hpp"
|
|
|
|
namespace Bloom::Targets::TargetDescription
|
|
{
|
|
struct ModuleInstance
|
|
{
|
|
std::string name;
|
|
std::map<std::string, RegisterGroup> registerGroupsMappedByName;
|
|
std::vector<Signal> instanceSignals;
|
|
};
|
|
}
|