Negate
Die neg
-Anweisungen, kurz für negieren, werden verwendet, um eine Zahl zu negieren. Das heißt, eine positive Zahl in eine negative und eine negative Zahl in eine positive Zahl umzuwandeln.
Probieren Sie es aus
Syntax
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
Anweisung | Binärer Opcode |
---|---|
f32.neg |
0x8c |
f64.neg |
0x9a |