You are here : assembly8086ADD

ADD - 8086

Add Two Numbers. Algorithm : operand1=operand1+operand2


Syntax

ADD REG, memory
ADD memory, REG
ADD REG, REG
ADD memory, immediate
ADD REG, immediate


Example

MOV AL, 5	;AL=5
ADD AL, -3	;AL=2
RET


Output / Return Value


Limitations


Alternatives / See Also

8086 ADC (Add with Carry) - https://wikidev.in/wiki/assembly/8086/ADC


Reference