swasm-utils 0.6.1

Collection of command-line utilities and corresponding Rust api for producing pswasm-compatible executables
Documentation
1
2
3
4
5
6
7
8
9
10
11
(module
	(import "env" "ext_return" (func $ext_return (param i32 i32)))
	(import "env" "memory" (memory 1 1))

	(start $start)
	(func $start (export "exported_start")
		(local i32)
	)
	(func (export "call")
	)
)