Register bit fields in TDF validation script

This commit is contained in:
Nav
2022-03-12 15:41:01 +00:00
parent f6b331c447
commit f17b2e1c35
3 changed files with 25 additions and 0 deletions

View File

@@ -1,9 +1,14 @@
<?php
namespace Bloom\BuildScripts\TargetDescriptionFiles;
require_once __DIR__ . "/BitField.php";
class Register
{
public ?string $name = null;
public ?int $offset = null;
public ?int $size = null;
/** @var BitField[] */
public array $bitFieldsByName = [];
}