mirror of
https://github.com/pezkuwichain/wasm-instrument.git
synced 2026-04-22 21:57:55 +00:00
12 lines
212 B
WebAssembly Text Format
12 lines
212 B
WebAssembly Text Format
(module
|
|
(import "env" "ext_return" (func $ext_return (param i32 i32)))
|
|
(import "env" "memory" (memory 1 1))
|
|
|
|
(start $start)
|
|
(func $start (export "exported_start")
|
|
(local i32)
|
|
)
|
|
(func (export "call")
|
|
)
|
|
)
|