aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Execution/MemAddr.php
blob: 5c141cc949d138d778f56a194be805873fdd5f7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

declare(strict_types=1);

namespace Nsfisis\Waddiwasi\Execution;

final readonly class MemAddr
{
    public function __construct(
        public int $value,
    ) {
    }
}