-
I found that we can select the data bits of an adder, but after changing the data bits, the places to input are still 3. So how can I use a wire to input a 4-bit data? |
Beta Was this translation helpful? Give feedback.
Answered by
hneemann
Oct 12, 2023
Replies: 2 comments 1 reply
-
To keep more complex circuits clear, buses are supported: One wire can represent several bits. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
4book
-
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To keep more complex circuits clear, buses are supported: One wire can represent several bits.
This is used in the adder: If four bits are selected, a 4 bit bus is connected to the inputs and the sum output.
See also #378