右移

shr 指令(shift-right 的缩写)用于执行按位右移,类似于其他语言中的 >>> 运算符。

试一试

语法

wasm
;; load two numbers onto the stack
i32.const 7   ;; 00000111
i32.const 1   ;; right shift one spot

;; perform a bitwise right-shift
i32.shr_u

;; the top item on the stack will now be 3 (00000011)
指令 二进制操作码
i32.shr_s 0x75
i32.shr_u 0x76
i64.shr_s 0x87
i64.shr_u 0x88