blob: 2341de82eeab33225862684f29d0223e264780c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
(module
(type $0 (func))
(import "env" "js_func" (func $a_js_func (type $0)))
(memory $0 1 1)
(data $0 "Hello, datacount section!")
(export "wasm_func_a" (func $a_wasm_func))
(func $a_wasm_func (type $0)
(memory.init $0
(i32.const 0)
(i32.const 0)
(i32.const 25)
)
(call $a_js_func)
)
)
|