blob: 91f8c23a2a51569c22f753f1e88168708e9807bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
(module
(memory 1024 1024
(segment 0 "hello, world")
)
(func $memory.init
(memory.init 0
(i32.const 512)
(i32.const 0)
(i32.const 12)
)
)
(func $data.drop
(data.drop 0)
)
(func $memory.copy
(memory.copy
(i32.const 512)
(i32.const 0)
(i32.const 12)
)
)
(func $memory.fill
(memory.fill
(i32.const 0)
(i32.const 42)
(i32.const 1024)
)
)
)
|