Do not set the CA bit in ADD().

Thanks Ashe`.
This commit is contained in:
Unknown W. Brackets 2014-05-23 09:19:18 -07:00
parent 493bf93a5a
commit 82d60ee48d

View file

@ -2820,7 +2820,6 @@ private:
const u64 RA = CPU.GPR[ra];
const u64 RB = CPU.GPR[rb];
CPU.GPR[rd] = RA + RB;
CPU.XER.CA = CPU.IsCarry(RA, RB);
if(oe) UNK("addo");
if(rc) CPU.UpdateCR0<s64>(CPU.GPR[rd]);
}