/1/And.hdl
http://github.com/happy4crazy/elements_of_computing_systems · Unknown · 19 lines · 15 code · 4 blank · 0 comment · 0 complexity · f475dd4f0b15f182cee2956b9fdd851d 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/And.hdl
-
- /**
- * And gate: out = a and b.
- */
-
- CHIP And {
-
- IN a, b;
- OUT out;
-
- PARTS:
- Nand(a=a, b=b, out=left);
- Nand(a=a, b=b, out=right);
- Nand(a=left, b=right, out=out);
- }