Constant SHR

Source
pub const SHR: Op;
Expand description

§Shr

0x26

Logical shift right by number of bits.

§Stack Input

[lhs, rhs]

§Stack Output

[lhs >> rhs]

§Panics

  • Number of bits is negative.
  • Number of bits is greater than a Word.