ADD - ADDition

Syntax: add dst, src

Description: Compute the sum of the two operands, and store the result in the first operand.

Examples:

add rax, 42 - Add 42 to the RAX register

C pseudo code would be value = value + 42;

add rcx, rbx Add the contents of RBX into RCX

C pseudo code would be:

int valB = 50;
int valC = 20;
valC = valC + valB;