X86-assembly/Instructions/add

From aldeid
Jump to navigation Jump to search
You are here:
add

Description

The add instruction is used to perform an addition.

Syntax

add destination, value

Examples

add eax, 0x10
Add 0x10 to EAX.
add eax, ebx
Add EBX to EAX and store the result in EAX.

Comments