Electrical – 4 by 4 bit Multiplier. Logisim help

circuit-designlogisim

I am trying to recreate the following design:

Test image

When I create it in Logisim, this is the error I get:

circuit

I understand the incompability is due to the number of data bits. When I adjust the data bits, none of the output will work. How can I fix it?

Best Answer

You need to use a splitter component (first item under "Wiring") when combining multiple 1-bit signals into a bus, or when separating them back out. Simply wiring them together, like you've done, doesn't work.

Here's what it should look like:

enter image description here

Note that you'll need to split and recombine the output from each of the adders -- for instance, the input to the second adder is made up of {CO, S3, S2, S1}, not {S3, S2, S1, S0}.

Related Topic