
The Binary Adder
Maagizo
Add two bits on paper and find the two outputs
Add two bits on paper and find the two outputs
Write out the only four cases and read the answer off.
- 0+0, 0+1, 1+0, 1+1 in binary.
- Note that the last one is 10 in binary — two digits.
- Tabulate the RIGHT digit (sum) and the LEFT digit (carry) separately.
- Compare each column with the truth tables from the relay blueprint.
The sum column is exactly XOR and the carry column is exactly AND. Nothing has been invented — arithmetic has been recognised as logic you already have.
That is the entire conceptual step, and it is worth not rushing past. Addition looked like a different kind of operation from AND and OR, and it is not. Once numbers are written in binary, arithmetic IS Boolean algebra, which is why a machine built from switches can do sums.
The awkward case is 1+1, because it needs two output digits where the inputs had one each. That overflow into a second digit is the carry, and every complication in the rest of this blueprint comes from moving it to the next column.Vifaa kwa hatua hii:
Graph Paper1 padZana zinazohitajika:
CalculatorAssemble the full adder from gates
Assemble the full adder from gates
Eneo la Kazi la Blockly
Loading Blockly workspace...
Zana zinazohitajika:
Desktop ComputerBuild it in hardware and watch the carry ripple
Build it in hardware and watch the carry ripple
Wire four full adders in a row and catch the wrong answer on its way to being right.
- Build a 4-bit ripple-carry adder from logic ICs, with LEDs on every sum output and every carry.
- Set the inputs to 0111 + 0001 — a sum that forces a carry through every stage.
- Trigger the oscilloscope on the input change and watch the most significant sum bit.
- Measure the time from input change to the final output settling.
For a brief moment the output shows a wrong answer, then corrects, possibly several times, before settling. Those intermediate values are real voltages on real wires — the machine genuinely holds wrong results while the carry travels.
Measure the delay per stage and multiply: a 32-bit ripple adder is 32 gate delays deep, and the clock cannot tick faster than that. The adder sets the processor's speed limit.
This is why real processors do not use ripple carry. Carry-lookahead computes, from the inputs alone, whether each column will GENERATE a carry or PROPAGATE one arriving from below — so all carries are worked out in parallel instead of in sequence. It costs a great deal more logic and it removes the chain, and that trade has been made in essentially every processor since.Vifaa kwa hatua hii:
Logic IC Assortment (74HC Series)1 kifaa
LED Indicator Set2 seti
Resistor Kit1 kifaa
Perfboard / Protoboard2 vipande
Hookup Wire (22 AWG)1 reelZana zinazohitajika:
Soldering Station (Temperature Controlled)
Oscilloscope 2-Channel 100MHz
Digital Multimeter (Lab Grade)
Adjustable Bench Power Supply (30V/5A)Model the delay, and price carry-lookahead
Model the delay, and price carry-lookahead
Zana zinazohitajika:
Desktop ComputerAdd an accumulator and you have arithmetic
Add an accumulator and you have arithmetic
Combine the two halves of this batch: an adder that computes and flip-flops that remember.
- Connect the sum outputs of your 4-bit adder to a register of four D-type flip-flops.
- Feed the register outputs back to one input of the adder.
- Put the number to be added on the other input, and pulse the clock.
- Pulse it repeatedly with 1 on the input and watch the register count.
The register now holds a running total, and each clock adds the input to it. That is an accumulator — the central component of every early computer, and the reason so many machines had exactly one place where arithmetic happened.
Notice what became possible the moment memory joined arithmetic: results can be fed back into the next operation, so a sequence of steps can build on each other. Without the register the adder answers one question; with it, the machine can work.
Watch the timing constraint bite. The register must not latch until the ripple carry has finished, or it stores a half-computed value — which is precisely why the adder's delay sets the clock speed, and why the flip-flop's setup time from the previous blueprint is not a detail but a hard constraint on the whole machine.Vifaa kwa hatua hii:
Logic IC Assortment (74HC Series)1 kifaa
LED Indicator Set1 seti
Perfboard / Protoboard1 kipandeZana zinazohitajika:
Soldering Station (Temperature Controlled)
Oscilloscope 2-Channel 100MHz
Function Generator 10MHz
Digital Multimeter (Lab Grade)Vifaa
6- 1 padKishikilia Nafasi
- Kishikilia Nafasi
- 3 setiKishikilia Nafasi
- 1 kifaaKishikilia Nafasi
- 3 vipandeKishikilia Nafasi
- 1 reelKishikilia Nafasi
Zana Zinazohitajika
7- Kishikilia Nafasi
- Kishikilia Nafasi
- Kishikilia Nafasi
- Kishikilia Nafasi
- Kishikilia Nafasi
- Kishikilia Nafasi
- Kishikilia Nafasi
Blueprint zinazohusiana
Blueprint hizi zinashiriki maarifa — mbinu, vifaa au kanuni
CC0 Umma Wote
Mchoro huu umetolewa chini ya CC0. Uko huru kunakili, kubadilisha, kusambaza, na kutumia kazi hii kwa madhumuni yoyote, bila kuomba ruhusa.
Saidia Mtengenezaji kwa kununua bidhaa kupitia Mchoro wao ambapo wanapata Kamisheni ya Mtengenezaji iliyowekwa na Wachuuzi, au unda marudio mapya ya Mchoro huu na uiunganishe kama kiungo katika Mchoro wako kuchangia mapato.


