..., value1, value2 => ..., resultvalue1 and value2 should be integers. value1 is shifted left by the amount indicated by the low five bits of value2. The integer result replaces both values on the stack.
..., value1, value2 => ..., resultvalue1 and value2 should be integers. value1 is shifted right arithmetically (with sign extension) by the amount indicated by the low five bits of value2. The integer result replaces both values on the stack.
..., value1, value2 => ..., resultvalue1 and value2 should be integers. value1 is shifted right logically (with no sign extension) by the amount indicated by the low five bits of value2. The integer result replaces both values on the stack.
..., value1-word1, value1-word2, value2 => ..., result-word1, result-word2value1 should be a long integer and value2 should be an integer. value1 is shifted left by the amount indicated by the low six bits of value2. The long integer result replaces both values on the stack.
..., value1-word1, value1-word2, value2 => ..., result-word1, result-word2value1 should be a long integer and value2 should be an integer. value1 is shifted right arithmetically (with sign extension) by the amount indicated by the low six bits of value2. The long integer result replaces both values on the stack.
..., value1-word1, value1-word2, value2-word1, value2-word2 => ..., result-word1, result-word2value1 should be a long integer and value2 should be an integer. value1 is shifted right logically (with no sign extension) by the amount indicated by the low six bits of value2. The long integer result replaces both values on the stack.
..., value1, value2 => ..., resultvalue1 and value2 should both be integers. They are replaced on the stack by their bitwise conjunction (AND).
..., value1-word1, value1-word2, value2-word1, value2-word2 => ..., result-word1, result-word2value1 and value2 should both be long integers. They are replaced on the stack by their bitwise conjunction (AND).
..., value1, value2 => ..., resultvalue1 and value2 should both be integers. They are replaced on the stack by their bitwise disjunction (OR).
..., value1-word1, value1-word2, value2-word1, value2-word2 => ..., result-word1, result-word2value1 and value2 should both be long integers. They are replaced on the stack by their bitwise disjunction (OR).
..., value1, value2 => ..., resultvalue1 and value2 should both be integers. They are replaced on the stack by their bitwise exclusive disjunction (XOR).
..., value1-word1, value1-word2, value2-word1, value2-word2 => ..., result-word1, result-word2value1 and value2 should both be long integers. They are replaced on the stack by their bitwise exclusive disjunction (XOR).
Generated with CERN WebMaker