aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Execution/MemInst.php
blob: 39990520417db07eccb0f285a02bf7e77f8f599a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php

declare(strict_types=1);

namespace Nsfisis\Waddiwasi\Execution;

use Nsfisis\Waddiwasi\Structure\Types\MemType;

final readonly class MemInst
{
    /**
     * @param list<Byte> $data
     */
    public function __construct(
        public MemType $type,
        public array $data,
    ) {
    }
}