diff options
Diffstat (limited to 'src/WebAssembly/Structure/Instructions/Instrs/Memory/I64Load32S.php')
| -rw-r--r-- | src/WebAssembly/Structure/Instructions/Instrs/Memory/I64Load32S.php | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/WebAssembly/Structure/Instructions/Instrs/Memory/I64Load32S.php b/src/WebAssembly/Structure/Instructions/Instrs/Memory/I64Load32S.php new file mode 100644 index 0000000..bd2575b --- /dev/null +++ b/src/WebAssembly/Structure/Instructions/Instrs/Memory/I64Load32S.php @@ -0,0 +1,25 @@ +<?php + +declare(strict_types=1); + +namespace Nsfisis\Waddiwasi\WebAssembly\Structure\Instructions\Instrs\Memory; + +use Nsfisis\Waddiwasi\WebAssembly\Structure\Instructions\Instr; + +final readonly class I64Load32S extends Instr +{ + /** + * @param U32 $offset + * @param U32 $align + */ + protected function __construct( + public int $offset, + public int $align, + ) { + } + + public static function opName(): string + { + return "i64.load32_s"; + } +} |
