chore: add readme
This commit is contained in:
15
wasm01/README.md
Normal file
15
wasm01/README.md
Normal file
@@ -0,0 +1,15 @@
|
||||
|
||||
`$ wasm2wat main.wasm`
|
||||
```wat
|
||||
(module
|
||||
(type (;0;) (func (param i32 i32) (result i32)))
|
||||
(func (;0;) (type 0) (param i32 i32) (result i32)
|
||||
local.get 1
|
||||
local.get 0
|
||||
i32.add)
|
||||
(memory (;0;) 1)
|
||||
(global (;0;) (mut i32) (i32.const 65536))
|
||||
(export "memory" (memory 0))
|
||||
(export "add" (func 0)))
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user