aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Execution/MemAddr.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Execution/MemAddr.php')
-rw-r--r--src/Execution/MemAddr.php13
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,
+ ) {
+ }
+}