aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Structure/Types/MemIdx.php
blob: 5fb9d760ee5de4d7c0b6ee0cd389d013e0cfad55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

declare(strict_types=1);

namespace Nsfisis\Waddiwasi\Structure\Types;

final readonly class MemIdx
{
    /**
     * @param U32 $value
     */
    public function __construct(
        public int $value,
    ) {
    }
}