减法
**sub
** 指令(代表减法)用于从另一个数字中减去一个数字,类似于其他语言中的 **-
** 运算符。
尝试一下
语法
wasm
;; load two numbers onto the stack
i32.const 10
i32.const 3
;; subtract one number from the other
i32.sub
;; the top item on the stack will now be 7 (10 - 3 = 7)
指令 | 二进制操作码 |
---|---|
i32.sub |
0x6b |
i64.sub |
0x7d |
f32.sub |
0x93 |
f64.sub |
0xa1 |