除法

div 指令(简称除法)用于将一个数字除以另一个数字,类似于其他语言中的/运算符。

试试看

语法

wasm
;; load two numbers onto the stack
i32.const 12
i32.const 3

;; divide one number by the other
i32.div_u

;; the top item on the stack will now be 4 (12 / 3 = 4)
指令 二进制操作码
i32.div_s 0x6d
i32.div_u 0x6e
i64.div_s 0x7f
i64.div_u 0x80
f32.div 0x95
f64.div 0xa3