This commit is contained in:
Nav
2023-12-12 23:25:29 +00:00
parent ec51a21846
commit 41a6e0bbbd
4 changed files with 4 additions and 4 deletions

View File

@@ -268,7 +268,7 @@ namespace Targets::Microchip::Avr::Avr8Bit
TargetDescriptor Avr8::getDescriptor() {
auto descriptor = TargetDescriptor(
this->signature.toHex(),
TargetFamily::AVR8,
TargetFamily::AVR_8,
this->name,
"Microchip",
this->targetMemoryDescriptorsByType,

View File

@@ -6,7 +6,7 @@ namespace Targets
{
enum class TargetFamily: std::uint8_t
{
AVR8,
AVR_8,
RISC_V,
};
}