State the logic instruction you would use when you want to a
State the logic instruction you would use when you want to:
a.) know when one or both matching bits in two different words are 1
b.) know when matching bits in two different words are both 1
c.) reverse the state of bits in a word
d.) know when one or the both bit of matching bits, but not both, in two different words is 1.
Solution
a.) know when one or both matching bits in two different words are 1 is OR
b.) know when matching bits in two different words are both 1 is AND
c.) reverse the state of bits in a word is NOT
d.) know when one or the both bit of matching bits, but not both, in two different words is 1.is XOR
