Command: ADD-Integer Addition
Arguments: DEST: register or memory location; SRC: immediate, register or memory location; (two memory operands cannot be used)
Usage: ADD DEST,SRC
Effects: DEST := DEST + SRC;
Flags to be set: The OF, SF, ZF, AF, CF, and PF flags are set according to the result.
Misc: No difference between signed and unsigned operands. OF and CF flags indicate carry in case of unsigned and signed values, SF indicates the sign in case of signed values.