Specifications

9033691-01 VH-2402-L3 Management Guide 187
Appendix B. Brief Review of Bitwise Logical
Operations
AND
The logical AND operation compares 2 bits and if they are both “1”,
then the result is “1”, otherwise, the result is “0”.
01
0
00
1
01
OR
The logical OR operation compares 2 bits and if either or both bits
are
“1”, then the result is “1”, otherwise, the result is “0”.
01
0
00
1
01
XOR
The logical XOR (exclusive OR) operation compares 2 bits and if
exactly one of them is a
“1”, then the result is “1”, otherwise the
result is
“0”.
01
0
01
1
10
NOT