myles wrote
Ok, what is this: "you want the carry out of one adder to become _what_ for the next adder?" in relation to? I have a book about code that showed inside a multi-bit add with carry output going to c input, that's the direction I was going.
I'm using FullAdder, not sure if/how I should utilize 3rd input and 2nd output.
Right. Carry out to carry in of the next higher bit.
Since there is no carry into the rightmost bit set c=false, or use a half-adder for bit 0.
Since overflow is ignored, you don't need to connect anything to the carry out from bit 15.
--Mark