diff options
Diffstat (limited to 'src/Execution/MemInst.php')
| -rw-r--r-- | src/Execution/MemInst.php | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/Execution/MemInst.php b/src/Execution/MemInst.php new file mode 100644 index 0000000..3999052 --- /dev/null +++ b/src/Execution/MemInst.php @@ -0,0 +1,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, + ) { + } +} |
