John Mavrick's Garden

Search IconIcon to open search

Last updated Unknown

Links: Computer Gates


Not Gate

Notes

Code

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
 * Not gate:
 * out = not in
 */

CHIP Not {
    IN in;
    OUT out;

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


Interactive Graph