mirror of
https://github.com/pezkuwichain/wasm-instrument.git
synced 2026-04-22 03:18:02 +00:00
6a79d1d4b8
Co-authored-by: Alexander Theißen <alex.theissen@me.com>
22 lines
476 B
WebAssembly Text Format
22 lines
476 B
WebAssembly Text Format
(module
|
|
(type (;0;) (func (param i32 i32) (result i32)))
|
|
(type (;1;) (func (param i64)))
|
|
(import "env" "gas" (func (;0;) (type 1)))
|
|
(func $add_locals (;1;) (type 0) (param $x i32) (param $y i32) (result i32)
|
|
(local i32)
|
|
i64.const 6
|
|
call 0
|
|
local.get $x
|
|
local.get $y
|
|
call $add
|
|
local.set 2
|
|
local.get 2
|
|
)
|
|
(func $add (;2;) (type 0) (param i32 i32) (result i32)
|
|
i64.const 3
|
|
call 0
|
|
local.get 0
|
|
local.get 1
|
|
i32.add
|
|
)
|
|
) |