In this first demo, I have used one of the inbuilt IC in BinPy
There are already many IC's which are built in BinPy, I am using just one of them.
Here I am illustrating the use of IC 7400 which is a QUAD 2 INPUT NAND GATE
A NAND gate is one of the universal logic gate, (other being NOR gate) which is used to construct combinational logic and sequential logic circuits.
A 2 INPUT NAND gate has two inputs and one output.The inputs and outputs are binary 0 or 1.
We describe the functioning of a logic gate by its truth table.
The truth table of a NAND gate is shown below
| 
INPUT | 
OUTPUT | |
| 
A | 
B | 
F | 
| 
0 | 
0 | 
1 | 
| 
0 | 
1 | 
1 | 
| 
1 | 
0 | 
1 | 
| 
1 | 
1 | 
0 | 

 


