OR
Die or
-Anweisungen werden für eine bitweise OR-Operation verwendet, ä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 OR
i32.or
;; the top item on the stack will now be 7 (00000111)
Anweisung | Binärer Opcode |
---|---|
i32.or |
0x72 |
i64.or |
0x84 |