• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1;; Compiled using the WebAssembly Tootkit (https://github.com/WebAssembly/wabt)
2;; $ wat2wasm --enable-threads shared-memory.wat -o shared-memory.wasm
3
4(module
5  ;; Create shared memory with initial 1 page (64KiB) and max 1 page
6  (memory $mem 1 1 shared)
7  (export "memory" (memory $mem))
8)