Difference between revisions of "Full adder"
From Fixme.ch
(3 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
[[Category:ElectroKit]] | [[Category:ElectroKit]] | ||
== Goal == | == Goal == | ||
− | * First step into logic | + | * First step into logic. |
+ | |||
== Level == | == Level == | ||
+ | * Knowing how to use a breadboard | ||
− | |||
== Component == | == Component == | ||
− | * | + | * two nand gate array chip (I used the ???). |
− | + | ||
== How to == | == How to == | ||
Line 14: | Line 14: | ||
[[File:Adderlogic.gif]] | [[File:Adderlogic.gif]] | ||
− | From this chip, we | + | From this chip, we will make an half adder. It is one of the basic component of every CPU as it is adding two bits. It's use is to have two bits. They represent a state either 1 or 0. We will add them with the following scheme : |
+ | <pre> | ||
1 + 1 = 10 | 1 + 1 = 10 | ||
1 + 0 = 01 | 1 + 0 = 01 | ||
Line 23: | Line 24: | ||
^ this bit is the most significant bit. We call it C1 later on. | ^ this bit is the most significant bit. We call it C1 later on. | ||
^ this bit is the least significant bit. We call it C0 later on. | ^ this bit is the least significant bit. We call it C0 later on. | ||
− | + | </pre> | |
− | Just follow the | + | Just follow the schema. You will need two chip to implement the half adder. |
[[File:Halfadder.gif]] | [[File:Halfadder.gif]] | ||
== What is happening there ? == | == What is happening there ? == |
Latest revision as of 23:58, 14 May 2012
Goal
- First step into logic.
Level
- Knowing how to use a breadboard
Component
- two nand gate array chip (I used the ???).
How to
The logic circuit of the chip is as followed :
From this chip, we will make an half adder. It is one of the basic component of every CPU as it is adding two bits. It's use is to have two bits. They represent a state either 1 or 0. We will add them with the following scheme :
1 + 1 = 10 1 + 0 = 01 0 + 1 = 01 0 + 0 = 00 ^ this bit is the first bit we add, we will call it A later on. ^ this bit is the second bit we add, we will call it B later on. ^ this bit is the most significant bit. We call it C1 later on. ^ this bit is the least significant bit. We call it C0 later on.
Just follow the schema. You will need two chip to implement the half adder.