/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

  1. // This file is part of the materials accompanying the book
  2. // "The Elements of Computing Systems" by Nisan and Schocken,
  3. // MIT Press. Book site: www.idc.ac.il/tecs
  4. // File name: projects/01/Not.hdl
  5. /**
  6. * Not gate. out = not in.
  7. */
  8. CHIP Not {
  9. IN in;
  10. OUT out;
  11. PARTS:
  12. Nand(a=in, b=in, out=out);
  13. }