blob: 75c4b3d741935c7e1106cb681d47f3456f03519c (
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
30
|
(module
(type $none_=>_none (func))
(memory $0 1024 1024)
(data (i32.const 0) "hello, world")
(func $0 (type $none_=>_none)
(memory.init 0
(i32.const 512)
(i32.const 0)
(i32.const 12)
)
)
(func $1 (type $none_=>_none)
(data.drop 0)
)
(func $2 (type $none_=>_none)
(memory.copy
(i32.const 512)
(i32.const 0)
(i32.const 12)
)
)
(func $3 (type $none_=>_none)
(memory.fill
(i32.const 0)
(i32.const 42)
(i32.const 1024)
)
)
)
|