Right rotation A RotD n returns A rotated right from n bits. Example : ror( 0b11010000, 4 ) -> 0b00001101 Syntax : < x > >> < n > | rotd( x, n ) | ror( x, n )