INC adds 1 to its operand. It does not affect the carry
flag: to affect the carry flag, use ADD something,1 (see
ADD). INC affects all the other flags according to the result.
This instruction can be used with a LOCK prefix to allow atomic execution.
See also DEC (DEC).