go to previous page   go to home page   go to next page hear noise highlighting

Rotate right the following bit pattern by two bit positions:

10001100

Answer:

00100011

Rotate Instructions

The rotate instructions are both pseudoinstructions. Each one takes four basic instructions to implement. The shift amount is given in a register or as an immediate operand.

Negative immediate operands are not allowed. However, if the third operand is a register it may contain a negative integer. In that case the rotation is the opposite direction.



rol d,s,t    # d <—s rotated left by t
             # (pseudoinstruction)
 
ror d,s,t    # d <— s  rotated right by t
             # (pseudoinstruction)

QUESTION 15:

Inspect the following:

li  $t2,-2
li  $t1,4
ror $t0,$t1,$t2

What does $t0 hold after the sequence has executed?


go to previous page   go to home page   go to next page