ROR

Synopsis:

Rotate register right.

Operation:

Rt = Ra >> Rb

Description:

This instruction rotates a general purpose register right the number of bits specified in a second general purpose register and places the result in a general purpose register. Only the low order six bits of Rb are significant. This instruction will not cause any exceptions.

Format:

Opcode7 Ra5 Rb5 Rt5 Reserved4 Func6
2 Ra5 Rb5 Rt5 ---- 43

 

Assembler Sample:

ROR     R4,R5,R6