Implementation of AND gate using NAND gate only.
This is the first Project of the chapter 1.
CHIP And
{
IN a, b;
OUT out;
PARTS:
Nand(a=a,b=b,out=x);
Not(in=x,out=out);
}
The above is the Hardware Description Language used to implement AND gate.
No comments:
Post a Comment