CTC
clear carry flag
STC
set carry flag
CMC
flip carry flag
ADC
Adds two values and adds 1 if carry flag is set.
SBB
Subtracts two values and subtracts an additional one if carry flag if carry flag is set.
OF and CF
Both set to 1 if upper half of a multiplication is non-zero. For example, if AL is multiplied by an 8-bit number and the result extends up into AH, both flags set. If EAX is multiplied by a 32 bit number and extends into EDX for overflow, both bits are set.