Do you do anything else beside program? I ask this bcuz i luv u
Name:
Anonymous2008-05-27 18:17
I can only assume that Mr. Failforce is misinterpreting the naming of Intel's condition flags as a statement that anything not explicitly named "overflow" is not an overflow. So let's have a look at the ia32 developer's manual, shall we?
CF (bit 0) Carry flag — Set if an arithmetic operation generates a carry or a borrow out of the most-significant bit of the result; cleared otherwise. This flag indicates an overflow condition for unsigned-integer arithmetic. It is also used in multiple-precision arithmetic.
OF (bit 11) Overflow flag — Set if the integer result is too large a positive number or too small a negative number (excluding the sign-bit) to fit in the destination operand; cleared otherwise. This flag indicates an overflow condition for signed-integer (two’s complement) arithmetic.