Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- BHELP On-Line: CBRIEF Macro Help - +----------------------------------------------+ http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
             +----------------------------------------------+
             |                Macro Operators               |
             |----------------------------------------------|
             | *        Multiply integers                   |
             | /        Divide integers                     |
             | +        Add integers OR concatenate strings |
             | -        Subtract integers                   |
             | %        Modulo integers                     |
             | ++       Increment integer                   |
             | --       Decrement integer                   |
             -------- TESTS --------------------------------|
             | ==       Equal (string or int)               |
             | !=       Not equal (string or int)           |
             | <=       Less or equal (string or int)       |
             | >=       Greater or equal (string or int)    |
             | <        Less than (string or int)           |
             | >        Greater than (string or int)        |
             | above    Unsigned int greater than (macro)   |
             | above_eq Unsigned int greater than (macro)   |
             | below    Unsigned int greater than (macro)   |
             | below_eq Unsigned int greater than (macro)   |
             -------- LOGICAL OPERATORS --------------------|
             | !        NOT logical                         |
             | ||       OR logical                          |
             | &&       AND logical                         |
             -------- BITWISE OPERATORS --------------------|
             | &        AND bitwise                         |
             | ~        NOT bitwise (invert all bits)       |
             | |        OR bitwise                          |
             -------- ASSIGNMENT ---------------------------|
             | =        Assignment                          |
             | +=       Add and assign                      |
             | -=       Subtract and assign                 |
             | *=       Multiply and assign                 |
             | /=       Divide and assign                   |
             | %=       Modulo and assign                   |
             | &=       Bitwise AND and assign              |
             | |=       Bitwise OR and assign               |
             +----------------------------------------------+

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson