test.wast 230 B

1234567891011
  1. (module
  2. (type (func))
  3. (func $_start
  4. (memory.grow (i32.const 1))
  5. drop
  6. (memory.fill (i32.const 65536) (i32.const 0) (i32.const 10))
  7. )
  8. (memory 1)
  9. (export "memory" (memory 0))
  10. (export "_start" (func $_start))
  11. )