Logical OR between all bits of two operands.
Result is stored in first operand.
These rules apply:
OR REG, memory OR memory, REG OR REG, REG OR memory, immediate OR REG, immediate
MOV AL, 'A' ; AL = 01000001b OR AL, 00100000b ; AL = 01100001b ('a') RET