|
I would be obliged if you go over my code for the first lines and explain to me what is wrong:
FullAdder(a=a[0], b=b[0], c=False, carry=carry[0], sum=out[0]);
FullAdder(a=a[1], b=b[1], c=carry[0], carry=carry[1], sum=out[1]);
FullAdder(a=a[2], b=b[2], c=carry[1], carry=carry[2], sum=out[2]);
}
Ron Levy
|