Ask Question
31 December, 11:38

What is a single instruction that inverts bits 5 and 6 in bl without changing any other bits?

+4
Answers (1)
  1. 31 December, 13:29
    0
    You want to XOR the register contents with the value 0x60 (a hex word with bits 5 and 6 set).

    Not sure how to write that in x86 assembler, is it:

    xor bl, 0x60
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “What is a single instruction that inverts bits 5 and 6 in bl without changing any other bits? ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers