OR
or
指令用于执行按位或运算,类似于其他语言中的 |
运算符。
试一试
语法
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)
指令 | 二进制操作码 |
---|---|
i32.or |
0x72 |
i64.or |
0x84 |