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