From a8f0ab12660de4b01a46a247bdbde28a3ea31b87 Mon Sep 17 00:00:00 2001 From: tactonbishop Date: Thu, 1 Dec 2022 07:00:05 +0000 Subject: [PATCH] Last Sync: 2022-12-01 07:00:05 --- Electronics/Digital_Circuits/Half_adder_and_full_adder.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Electronics/Digital_Circuits/Half_adder_and_full_adder.md b/Electronics/Digital_Circuits/Half_adder_and_full_adder.md index 1b37b13..576c82f 100644 --- a/Electronics/Digital_Circuits/Half_adder_and_full_adder.md +++ b/Electronics/Digital_Circuits/Half_adder_and_full_adder.md @@ -95,7 +95,7 @@ The digital circuit above has the same inputs and outputs as the half adder diag As the half adder only calculates the least significant bit, it is not sufficient by itself to complete a binary addition; it cannot account for movements in binary place value. To carry out full calculations it must be supplemented with the full adder. -The full adder takes in three inputs and has two inputs. It is identical to the half-adder apart from the fact that one of its inputs is **carry-in**. This is obviously equivalent to the value that is designated as **carry-out** in a half adder. It is an incoming value that is the product of a previous operation that resulted in a carry-out. This is added together with its own two inputs (A and B) and generates a sum bit and a carry-out bit. +The full adder takes in three inputs and has two outputs. It is identical to the half-adder apart from the fact that one of its inputs is **carry-in**. This is equivalent to the value that is designated as **carry-out** in a half adder. It is an incoming value that is the product of a previous operation that resulted in a carry-out. This is added together with the full adders own two inputs (A and B) and like the half adder, generates a sum bit and a carry-out bit. | A | B | C_in | S | C_out | | ---------------------------- | ----------------------------- | ------------------------ | ---------------------- | ---------------------------- |