2021-06-05 22:41:12 +01:00
|
|
|
<?php
|
|
|
|
|
namespace Bloom\BuildScripts\TargetDescriptionFiles;
|
|
|
|
|
|
2022-03-12 15:41:01 +00:00
|
|
|
require_once __DIR__ . "/BitField.php";
|
|
|
|
|
|
2021-06-05 22:41:12 +01:00
|
|
|
class Register
|
|
|
|
|
{
|
|
|
|
|
public ?string $name = null;
|
|
|
|
|
public ?int $offset = null;
|
|
|
|
|
public ?int $size = null;
|
2022-03-12 15:41:01 +00:00
|
|
|
|
|
|
|
|
/** @var BitField[] */
|
|
|
|
|
public array $bitFieldsByName = [];
|
2021-06-05 22:41:12 +01:00
|
|
|
}
|