取反

neg 指令(negate 的缩写)用于对数字取反。也就是说,将正数转换为负数,将负数转换为正数。

试一试

语法

wasm
;; load a number onto the stack
f32.const 2.7

;; negate
f32.neg

;; the top item on the stack will now be -2.7
指令 二进制操作码
f32.neg 0x8c
f64.neg 0x9a