乘法
mul
指令(乘法的缩写)用于将一个数字乘以另一个数字,类似于其他语言中的 *
运算符。
试一试
语法
wasm
;; load two numbers onto the stack
i32.const 10
i32.const 3
;; multiply one number by the other
i32.mul
;; the top item on the stack will now be 30 (10 * 3 = 30)
指令 | 二进制操作码 |
---|---|
i32.mul |
0x6c |
i64.mul |
0x7e |
f32.mul |
0x94 |
f64.mul |
0xa2 |