TIM Expression Operators
A + B | (A plus B) |
A – B | (A minus B) |
A * B | (A times B) |
A / B | (A divided by B) |
Logical
A _AND_B | (bit by bit logical AND) |
A _OR_B | (bit by bit inclusive OR) |
A _XOR_B | (bit by bit exclusive OR) |
Relational
A _EQ_ B | (A equals B) |
A _NE_ B | (A not equal to B) |
A _GT_ B | (A greater than B) |
A _GE_ B | (A greater than or equal to B) |
A _LT_ B | (A less than B) |
A _LE_ B | (A less than or equal to B) |
Shift
A _SHR_ B | (Shift A to the right B bit positions) |
A _SHL_ B | (Shift A to the left B bit positions) |