The logical functions are designed for use with binary/hex integers. You should set the output mode to whichever base you are working in.
Operator | Description | Examples |
---|---|---|
and | bitwise and | 56h AND F0h |
or | bitwise or | 50h OR 06h |
not | bitwise not (1's complement) | NOT FFh |
>> | downshift, also known as rightshift. Shifts all bits right | 6>>1 |
<< | upshift, also known as leftshift. Shifts all bits left | 6<<1 |