I have read in my book this sentence:
Logical and Shift Instructions Operate on bits individually Unlike arithmetic, which operate on entire word
Use to isolate fields. Either by masking or by shifting back and forth.
I can not understand these two sentences at all.
Both shift and arithmetic instructions would change all the bits (in some situation), and in arithmetic, bits are added one by one to calculate the answer.
So what is the meaning of this part "Instructions Operate on bits individually Unlike arithmetic, which operate on entire word"?
My second question:
I don't know have any idea about this part can you explain it to me:
Use to isolate fields. Either by masking or by shifting back and forth.
My third question: what is a logical instruction. Did he mean AND, OR for example? Can you explain more?