/1/Or16.hdl

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