This repository has been archived on 2022-01-04. You can view files and clone it, but cannot push or open issues or pull requests.
ableos-wasm-loader/wasm/test.wat

9 lines
265 B
Plaintext
Raw Normal View History

2021-11-12 00:41:16 +00:00
(module
(import "host" "add" (func $add (param i32 i32)(result i32)))
2021-11-12 22:01:59 +00:00
(; (import "host" "empty" (func $empty)) ;)
2021-11-12 00:41:16 +00:00
(func (export "main") (result i32)
2021-11-12 22:01:59 +00:00
(; (call $empty) ;)
2021-11-12 00:41:16 +00:00
(call $add (i32.const 123) (i32.const 456))
)
)