ARM > Introduction to ARM > Logical Instructions
Examples of Logical Instructions
AND r8, r7, r2
- R8 = R7 & R2
ORR r11, r11, #1
- R11 |= 1
BIC r11, r11, #1
- R11 &= ~1
EOR r11, r11, #1
- R11 ^= 1
Previous topic:
Arithmetic Instructions
Next topic:
Compare Instructions