mirror of
https://github.com/pezkuwichain/wasm-instrument.git
synced 2026-06-13 00:01:04 +00:00
18 lines
483 B
WebAssembly Text Format
18 lines
483 B
WebAssembly Text Format
(module
|
|
(type (;0;) (func (param i32 i32)))
|
|
(type (;1;) (func))
|
|
(type (;2;) (func (param i32)))
|
|
(import "env" "ext_return" (func $ext_return (type 0)))
|
|
(import "env" "memory" (memory (;0;) 1 1))
|
|
(import "env" "gas" (func $start (type 2)))
|
|
(func (;2;) (type 1)
|
|
i32.const 4
|
|
call $start
|
|
i32.const 8
|
|
i32.const 4
|
|
call $ext_return
|
|
unreachable)
|
|
(func (;3;) (type 1))
|
|
(export "call" (func 3))
|
|
(start 2)
|
|
(data (;0;) (i32.const 8) "\01\02\03\04")) |