aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Structure/Instructions/Instrs/Table/TableCopy.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Structure/Instructions/Instrs/Table/TableCopy.php')
-rw-r--r--src/Structure/Instructions/Instrs/Table/TableCopy.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/Structure/Instructions/Instrs/Table/TableCopy.php b/src/Structure/Instructions/Instrs/Table/TableCopy.php
new file mode 100644
index 0000000..04a50c8
--- /dev/null
+++ b/src/Structure/Instructions/Instrs/Table/TableCopy.php
@@ -0,0 +1,17 @@
+<?php
+
+declare(strict_types=1);
+
+namespace Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Table;
+
+use Nsfisis\Waddiwasi\Structure\Instructions\Instr;
+use Nsfisis\Waddiwasi\Structure\Types\TableIdx;
+
+final readonly class TableCopy extends Instr
+{
+ public function __construct(
+ public TableIdx $to,
+ public TableIdx $from,
+ ) {
+ }
+}