element in a TDF, * which is part of some unresolved register group. * * This class represents a **resolved** target register, within a register group, within a target peripheral. With * this class, we can access the absolute address of the register. * * This class is constructed from a `TargetDescriptionFiles\Register` object. * @see TargetDescriptionFile::getTargetRegister() for more. */ class TargetRegister { public ?string $key = null; public ?string $name = null; public ?string $addressSpaceKey = null; public ?int $address = null; public ?int $size = null; public ?int $initialValue = null; public ?string $description = null; /** @var TargetRegisterBitField[] */ public array $bitFields; public function __construct( ?string $key, ?string $name, ?string $addressSpaceKey, ?int $address, ?int $size, ?int $initialValue, ?string $description, array $bitFields ) { $this->key = $key; $this->name = $name; $this->addressSpaceKey = $addressSpaceKey; $this->address = $address; $this->size = $size; $this->initialValue = $initialValue; $this->description = $description; $this->bitFields = $bitFields; } }