Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Watcom Debugger Guide - <u>=</u> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
=
    Assignment:  The value on the right is assigned to the object on the
    left.

+=
    Additive assignment:  The value of the object on the left is augmented
    by the value on the right.

-=
    Subtractive assignment:  The value of the object on the left is reduced
    by the value on the right.

*=
    Multiplicative assignment:  The value of the object on the left is
    multiplied by the value on the right.

/=
    Division assignment:  The value of the object on the left is divided by
    the value on the right.

%=
    Modulus assignment:  The object on the left is updated with
    MOD(left,right).  The result is the remainder when the value of the
    object on the left is divided by the value on the right.

&=
    Bit-wise AND:  The bits in the object on the left are ANDed with the
    bits of the value on the right.

|=
    Bit-wise inclusive OR:  The bits in the object on the left are ORed with
    the bits of the value on the right.

=
    Bit-wise exclusive OR:  The bits in the object on the left are
    exclusively ORed with the bits of the value on the right.

<<=
    Left shift:  The bits in the object on the left are shifted to the left
    by the amount of the value on the right.

>>=
    Right shift:  The bits in the object on the left are shifted to the
    right by the amount of the value on the right.  If the object on the
    left is described as unsigned, the vacated high-order bits are zeroed.
     If the object on the left is described as signed, the sign bit is
    propagated through the vacated high-order bits.  The debugger treats
    registers as unsigned items.

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