blob: f2c4c0c5e30c3c7a18814428e882c6629ebcc475 [file] [log] [blame] [edit]
(module
(type $0 (func))
(memory $0 1024 1024)
(data $0 (i32.const 0) "hello, world")
(func $memory.init (type $0)
(memory.init $0
(i32.const 512)
(i32.const 0)
(i32.const 12)
)
)
(func $data.drop (type $0)
(data.drop $0)
)
(func $memory.copy (type $0)
(memory.copy
(i32.const 512)
(i32.const 0)
(i32.const 12)
)
)
(func $memory.fill (type $0)
(memory.fill
(i32.const 0)
(i32.const 42)
(i32.const 1024)
)
)
)