mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2024-11-26 15:32:05 +00:00
11 lines
184 B
Plaintext
11 lines
184 B
Plaintext
(module
|
|
(type $1 (func (param i32) (result i32)))
|
|
(memory $3 0)
|
|
(export "load" (func $4))
|
|
|
|
(func $4 (type $1) (param $0 i32) (result i32)
|
|
local.get $0
|
|
i32.load
|
|
)
|
|
)
|