标签:des io os ar for sp on amp ad
CF:Carry Flag.The most recent operation generated a carry out of the most significant bit.Used to detect overflow for unsigned operations.
ZF:Zero Flag.The most recent operation yielded zero.
SF:Sign Flag.The most recent operation yielded a negative value.
OF:Overflow Flag.The most recent operation caused a two‘s-complement overflow-either negative or positive.
Suppose we used ADD instructons to perform the equivalent of the C assignment t=a+b,where variables a,b,and t are integers.
CF:(unsigned)t<(unsigned)a
ZF:(t==0)
SF:(t<0)
OF:(a<0==b<0)&&(t<0!=a<0)
标签:des io os ar for sp on amp ad
原文地址:http://www.cnblogs.com/Shaw-Wei-Wei/p/4018387.html