Guest User

Untitled

a guest
Jan 22nd, 2018
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. (module
  2. (import "imp" "log" (func $log (param i32 i32)))
  3. (memory (import "imp" "mem") 1)
  4. (func $writeHi
  5. (i32.store8
  6. (i32.const 0)
  7. (i32.const 72)
  8. )
  9. i32.const 0
  10. i32.const 5
  11. call $log
  12. )
  13. (data (i32.const 0) "hello")
  14. (export "writeHi" (func $writeHi))
  15. )
Add Comment
Please, Sign In to add comment