Corrected architecture string in AVR8 TDFs

This commit is contained in:
Nav
2024-11-27 20:02:43 +00:00
parent d613c9909b
commit a63dd1b4ef
263 changed files with 293 additions and 261 deletions

View File

@@ -0,0 +1,12 @@
<?php
namespace Targets\TargetDescriptionFiles\Avr8;
enum AvrIsa: string
{
case AVR = 'AVR';
case AVR_E = 'AVRe';
case AVR_E_PLUS = 'AVRe+';
case AVR_XM = 'AVRxm';
case AVR_XT = 'AVRxt';
case AVR_RC = 'AVRrc';
}