Public » Elements of Computing
Clone URL:  
Pushed to one repository · View In Graph Contained in tip

...now with dependencies!

Changeset 11efdfcdf41d

Parent dfdc4d812bfe

by Profile picture of Benjamin PollackBenjamin Pollack

Changes to one file · Browse files at 11efdfcdf41d Showing diff from parent dfdc4d812bfe Diff from another changeset...

Change 1 of 1 Show Entire File 02/​Or16Way.hdl Stacked
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
@@ -0,0 +1,9 @@
+CHIP Or16Way { + IN in[16]; + OUT out; + + PARTS: + Or8Way(in=in[0..7], out=o1); + Or8Way(in=in[8..15], out=o2); + Or(a=o1, b=o2, out=out); +}