------------------------------------------------------------------------------ o Shift Arithetical Left x86 \ Alpha |--- alias to shift logical left on this architectures. PPC | MIPS / Shift Arithmetical Left
Shift Arithmetical Right
destination = source >>> count |
destination = source << count |
destination = source >> count |
destination = source ROL count |
destination = source ROR count |
destination = source RCL count |
destination = source RCR count |