blob: 4c33e46cacd984f1f0677e4cb5fb1b1f52dfaeff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
(module
(type $none_=>_none (func))
(memory $0 256 256)
(data (i32.const 10) "waka waka waka waka waka")
(table $0 1 1 funcref)
(elem (i32.const 0) $call-indirect)
(export "test1" (func $test1))
(func $test1
(call_indirect (type $none_=>_none)
(i32.const 1)
)
(i32.store8
(i32.const 20)
(i32.const 120)
)
)
(func $call-indirect
(i32.store8
(i32.const 40)
(i32.const 67)
)
)
)
|