From here
However, Intel processor
has a special instruction called adc.
This command behaves similarly as the
add command. The only extra thing is
that it also add the value carry flag
along. So, this may be very handy to
add large integers. Suppose you'd like
to add a 32-bit integers with 16-bit
registers. How can we do that? Well,
let's say that the first integer is
held on the register pair DX:AX, and
the second one is on BX:CX. This is
how:
add ax, cx adc dx, bx Ah, so first, the lower 16-bit is added by
add ax, cx. Then the higher 16-bit is
added using adc instead of add. It is
because: if there are overflows, the
carry bit is automatically added in
the higher 16-bit. So, no cumbersome
checking. This method can be extended
to 64 bits and so on... Note that: If
the 32-bit integer addition overflows
too at the higher 16-bit, the result
will not be correct and the carry flag
is set, e.g. Adding 5 billion to 5
billion.
Everything from here on, remember that it falls pretty much into the zone of implementation defined behavior.
Here's a small sample that works for VS 2010 (32-bit, WinXp)
Caveat: $7.4/1- "The asm declaration is conditionally-supported; its meaning is implementation-defined. [ Note: Typically it is used to pass information through the implementation to an assembler. —end note ]"
int main(){
bool carry = false;
int x = 0xffffffff + 0xffffffff;
__asm {
jc setcarry
setcarry:
mov carry, 1
}
}