Unrelated Circuit - 4 Bit Adding Machine
- computing
- electronics
Note
This is an old post or draft which was migrated from my old blog. It may have broken links, and it definitely has questionable opinions. Consume at your own risk.
We started with truth tables for binary addition:
0101 -(binary of 5)
0110 -(binary of 6)
+____
1011 -(binary of 11)
We found that each column works like XOR, except if A and B are both 1, you have to carry a digit (like above), which makes things a little nasty. My friend stumbled upon half adder logic, which instantly un-stumped the problem. You do an XOR for the sum of A and B, but you also AND A and B and store it to C, your carry variable. Then you have to repeat the process between [the sum of A and B] and C (explaining the other "half"). Then you send that sum to the output, and carry the C to the next column.
![]() |
From RabidAudio |
![]() |
From RabidAudio |
![]() |
From RabidAudio |