Thread
:
problem
View Single Post
shabbir
Go4Expert Founder
24Nov2006,15:00
When you rotate the accumulator its actually a shifting and so shifting is actually results in devide multiiply by 2
e.g.
0110 = 6
Right shift = 0011 = 3 = 6/2
Left Shift = 1100 = 12 = 6x2
Thanks
Shabbir