1*615d697aSAlex Crichton(module
2*615d697aSAlex Crichton  (import "wasi_snapshot_preview1" "fd_write" (func $write (param i32 i32 i32 i32) (result i32)))
3*615d697aSAlex Crichton
4*615d697aSAlex Crichton  (memory (export "memory") 1)
5*615d697aSAlex Crichton
6*615d697aSAlex Crichton  (func (export "_start")
7*615d697aSAlex Crichton    (call $write
8*615d697aSAlex Crichton      (i32.const 1) ;; fd=1
9*615d697aSAlex Crichton      (i32.const 1) ;; ciovec_base=1 (misaligned)
10*615d697aSAlex Crichton      (i32.const 1) ;; ciovec_len=1
11*615d697aSAlex Crichton      (i32.const 0) ;; retptr=0
12*615d697aSAlex Crichton    )
13*615d697aSAlex Crichton    drop
14*615d697aSAlex Crichton
15*615d697aSAlex Crichton  )
16*615d697aSAlex Crichton)
17