Moved address space, module, property group, variant, pinout and peripheral module extraction to TDF initialisation. Also some other bits of tidying.
15 lines
231 B
C++
15 lines
231 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace Bloom::Targets::TargetDescription
|
|
{
|
|
struct Variant
|
|
{
|
|
std::string name;
|
|
std::string pinoutName;
|
|
std::string package;
|
|
bool disabled = false;
|
|
};
|
|
}
|