Propeller Manual

Table Of Contents
3: Assembly Language Reference
Binary Operators
NOTE: All operators shown are constant expression operators.
+ Add; p 326.
- Subtract; p 326.
* Multiply and return lower 32 bits (signed); p 326.
** Multiply and return upper 32 bits (signed); p 326.
/ Divide and return quotient (signed); p 326.
// Divide and return remainder (signed); p 326.
#> Limit minimum (signed); p 326.
<# Limit maximum (signed); p 326.
~> Shift arithmetic right; p 326.
<< Bitwise: Shift left; p 326.
>> Bitwise: Shift right; p 326.
<- Bitwise: Rotate left; p 326.
-> Bitwise: Rotate right; p 326.
>< Bitwise: Reverse; p 326.
& Bitwise: AND; p 326.
| Bitwise: OR; p 326.
^ Bitwise: XOR; p 326.
AND Boolean: AND (promotes non-0 to -1); p 326.
OR Boolean: OR (promotes non-0 to -1); p 326.
= = Boolean: Is equal; p 326.
<> Boolean: Is not equal; p 326.
< Boolean: Is less than (signed); p 326.
> Boolean: Is greater than (signed); p 326.
=< Boolean: Is equal or less (signed); p 326.
=> Boolean: Is equal or greater (signed); p 326.
Propeller Manual v1.1 · Page 249