Added derivation of TDF base class, for AVR8 targets.

Includes initialisation and validation code.
This commit is contained in:
Nav
2021-06-05 22:41:12 +01:00
parent bff9f7c317
commit b1ac652a7f
13 changed files with 850 additions and 11 deletions

View File

@@ -0,0 +1,15 @@
<?php
namespace Bloom\BuildScripts\TargetDescriptionFiles;
require_once __DIR__ . "/MemorySegment.php";
class AddressSpace
{
public ?string $id = null;
public ?string $name = null;
public ?int $startAddress = null;
public ?int $size = null;
/** @var MemorySegment[][] */
public array $memorySegmentsByTypeAndName = [];
}