12 lines
249 B
Plaintext
12 lines
249 B
Plaintext
(module
|
|
(data $passive "this is a passive data segment")
|
|
|
|
(func (export "init") (param i32 i32 i32)
|
|
local.get 0 ;; dst
|
|
local.get 1 ;; src
|
|
local.get 2 ;; cnt
|
|
memory.init $passive)
|
|
|
|
(func (export "drop")
|
|
data.drop $passive))
|