diff options
Diffstat (limited to 'src/Execution/MemAddr.php')
| -rw-r--r-- | src/Execution/MemAddr.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/Execution/MemAddr.php b/src/Execution/MemAddr.php new file mode 100644 index 0000000..5c141cc --- /dev/null +++ b/src/Execution/MemAddr.php @@ -0,0 +1,13 @@ +<?php + +declare(strict_types=1); + +namespace Nsfisis\Waddiwasi\Execution; + +final readonly class MemAddr +{ + public function __construct( + public int $value, + ) { + } +} |
