John Mavrick's Garden

Search IconIcon to open search

Last updated Unknown

Links: Computer Gates - Nand2Tetris Project 1

And Gate

1
2
3
4
5
6
7
8
CHIP And {
    IN a, b;
    OUT out;

    PARTS:
    Nand(a=a, b=b, out=NandOut);
	Not(in=NandOut, out=out);
}

Truth Table

a b out
0 0 0
0 1 0
1 0 0
1 1 1

Notes


Interactive Graph