Logical AND between all bits of two operands. Result is stored in operand1. These Rules Apply : 1 AND 1 = 1 1 AND 0 = 0 0 AND 1 = 0 0 AND 0 = 0
AND REG, memory AND memory, REG AND REG, REG AND memory, immediate AND REG, immediate
MOV AL, 'a' ;AL=01100001b AND AL, 11011111b ;AL=01000001b ('A') RET