Computer Science, asked by alligation9526, 1 year ago

What could be the value of register $t1 after executing the instruction SLL $t1,$t0,1 if the value of $t0=1010 0110 1100 0001 0000 0000 0000 0001

Answers

Answered by ankurbadani84
78

Answer:

Explanation:

SLL stands for Shift Left logical.

SLL $t1,$t0,1  - will move the bits left by 1. This will be from lower to higher. While it moves it will fill 0's.

1010 0110 1100 0001 0000 0000 0000 0001

After SLL $t1,$t0,1

0100 1101 1000 0010 0000 0000 0000 0010  -- All digits shifted left  <-

SRL will shift digits right.

Answered by vutridongkhmt2haui
0

Answer:

11111

Explanation:

Similar questions