/1/Not.hdl
http://github.com/happy4crazy/elements_of_computing_systems · Unknown · 17 lines · 13 code · 4 blank · 0 comment · 0 complexity · 96ab4186a1d582ba63e1349796e9a2ec MD5 · raw file
- // This file is part of the materials accompanying the book
- // "The Elements of Computing Systems" by Nisan and Schocken,
- // MIT Press. Book site: www.idc.ac.il/tecs
- // File name: projects/01/Not.hdl
-
- /**
- * Not gate. out = not in.
- */
-
- CHIP Not {
-
- IN in;
- OUT out;
-
- PARTS:
- Nand(a=in, b=in, out=out);
- }