XOR
Die xor
Anweisungen werden verwendet, um eine bitweise XOR-Operation durchzuführen, ähnlich dem ^
Operator in anderen Sprachen.
Probieren Sie es aus
Syntax
wasm
;; load two numbers onto the stack
i32.const 5 ;; 00000101
i32.const 3 ;; 00000011
;; perform a bitwise XOR
i32.xor
;; the top item on the stack will now be 6 (00000110)
Anweisung | Binärer Opcode |
---|---|
i32.xor |
0x73 |
i64.xor |
0x85 |