aboutsummaryrefslogtreecommitdiff
path: root/tests/wasm_compile_arithm/instructions.wat
blob: a43a34888a76007dbfac2e8a7200e7d29c62ffec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(module
 (memory 0 2)
 (func $main
       ;; write 0xFFEFE021 at MEMORY_BOTTOM_ADDR + 0x0
       (i32.store offset=0x0 align=2 (i32.const 0x0)
       		  (i32.sub (i32.const 0x42143) (i32.const 0x144122)))
       ;; write 0x16D3B7 at MEMORY_BOTTOM_ADDR + 0x4
       (i32.store offset=0x0 align=2 (i32.const 0x4)
       		  (i32.add (i32.const 0x7109D) (i32.const 0xFC31A)))
       ;; write 0xED8 at MEMORY_BOTTOM_ADDR + 0x8
       (i32.store offset=0x0 align=2 (i32.const 0x8)
       		  (i32.div_u (i32.const 0x193E324F) (i32.const 0x1B342)))
       ;; write 0x3C773E7C at MEMORY_BOTTOM_ADDR + 0xC
       (i32.store offset=0x0 align=2 (i32.const 0xC)
       		  (i32.mul (i32.const 0x38F2C) (i32.const 0x10FD))))
 (export "main" (func $main)))