/1/Not16.hdl

http://github.com/happy4crazy/elements_of_computing_systems · Unknown · 32 lines · 28 code · 4 blank · 0 comment · 0 complexity · ac6f382c847a2313c7b7fd12a7b3c106 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/Not16.hdl
  5. /**
  6. * 16-bit negation gate: for i=0..15 out[i] = not in[i]
  7. */
  8. CHIP Not16 {
  9. IN in[16];
  10. OUT out[16];
  11. PARTS:
  12. Not(in=in[0], out=out[0]);
  13. Not(in=in[1], out=out[1]);
  14. Not(in=in[2], out=out[2]);
  15. Not(in=in[3], out=out[3]);
  16. Not(in=in[4], out=out[4]);
  17. Not(in=in[5], out=out[5]);
  18. Not(in=in[6], out=out[6]);
  19. Not(in=in[7], out=out[7]);
  20. Not(in=in[8], out=out[8]);
  21. Not(in=in[9], out=out[9]);
  22. Not(in=in[10], out=out[10]);
  23. Not(in=in[11], out=out[11]);
  24. Not(in=in[12], out=out[12]);
  25. Not(in=in[13], out=out[13]);
  26. Not(in=in[14], out=out[14]);
  27. Not(in=in[15], out=out[15]);
  28. }