右移旋转

rotr 指令(rotate-right 的缩写)用于执行按位右移旋转。

试一试

语法

wasm
;; load two numbers onto the stack
i32.const 7   ;; 00000000_00000000_00000000_00000111
i32.const 1   ;; right rotate one spot

;; perform a bitwise right-rotate
i32.rotr

;; the top item on the stack will now be 2147483651
;; (10000000_00000000_00000000_00000011)
指令 二进制操作码
i32.rotr 0x78
i64.rotr 0x8a