diff options
Diffstat (limited to 'src/WebAssembly/Structure/Instructions/Instrs/Variable/GlobalGet.php')
| -rw-r--r-- | src/WebAssembly/Structure/Instructions/Instrs/Variable/GlobalGet.php | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/WebAssembly/Structure/Instructions/Instrs/Variable/GlobalGet.php b/src/WebAssembly/Structure/Instructions/Instrs/Variable/GlobalGet.php new file mode 100644 index 0000000..2358325 --- /dev/null +++ b/src/WebAssembly/Structure/Instructions/Instrs/Variable/GlobalGet.php @@ -0,0 +1,20 @@ +<?php + +declare(strict_types=1); + +namespace Nsfisis\Waddiwasi\WebAssembly\Structure\Instructions\Instrs\Variable; + +use Nsfisis\Waddiwasi\WebAssembly\Structure\Instructions\Instr; + +final readonly class GlobalGet extends Instr +{ + protected function __construct( + public int $var, + ) { + } + + public static function opName(): string + { + return "global.get"; + } +} |
