Add c1 to c2.
And c1 & c2.
Complement
Decrement
Signed divide c1 / c2.
Signed divide c1 / c2. The remainder after division is stored to modulus.
If c1 >= c2 signed
If c1 > c2 signed
Increment
If c1 <= c2 signed
If c1 < c2 signed
Multiply c1 * c2.
Negate
Or c1 | c2.
Rotate left n bits
Rotate left one bit
Rotate right n bits
Rotate right one bit
Arithmetic shift right n bits
Arithmetic shift right one bit
Shift left n bits
Shift left one bit
Unsigned shift right n bits
Unsigned shift right one bit
Subtract c2 from c1.
Test against 0
Unsigned divide c1 / c2.
Unsigned divide c1 / c2. The remainder after division is stored to modulus.
If c1 >= c2 unsigned
If c1 > c2 unsigned
If c1 <= c2 unsigned
If c1 < c2 unsigned
Xor c1 ^ c2.