<<< ADD Arithmetic Instruction | Index | SUB Arithmetic Instruction >>> |
Note that
inc eax
is better than
add eax, 1
INC takes less space.
Both INC and ADD execute at about the same speed.
<<< ADD Arithmetic Instruction | Index | SUB Arithmetic Instruction >>> |