LibOpShiftBitsRightNP

Git Source

Opcode for shifting bits right. The shift amount is taken from the operand so it is compile time constant.

Functions

integrity

Shift bits right by the amount specified in the operand.

function integrity(IntegrityCheckStateNP memory, Operand operand) internal pure returns (uint256, uint256);

run

Shift bits right by the amount specified in the operand.

function run(InterpreterStateNP memory, Operand operand, Pointer stackTop) internal pure returns (Pointer);

referenceFn

Reference implementation for shifting bits right.

function referenceFn(InterpreterStateNP memory, Operand operand, uint256[] memory inputs)
    internal
    pure
    returns (uint256[] memory);