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

Or8Way, finishing off Chapter 1

Changeset 389f5c3415e2

Parent c98c2fe2cfa3

by Profile picture of Benjamin PollackBenjamin Pollack

Changes to one file · Browse files at 389f5c3415e2 Showing diff from parent c98c2fe2cfa3 Diff from another changeset...

Change 1 of 1 Show Entire File 01/​Or8Way.hdl Stacked
 
12
13
14
15
16
 
 
 
 
 
 
 
 
 
 
12
13
14
 
 
 
15
16
17
18
19
20
21
22
@@ -12,5 +12,11 @@
  OUT out;     PARTS: - // Put your code here: -} \ No newline at end of file
+ Or(a=in[0], b=in[1], out=o1); + Or(a=in[2], b=in[3], out=o2); + Or(a=in[4], b=in[5], out=o3); + Or(a=in[6], b=in[7], out=o4); + Or(a=o1, b=o2, out=oo1); + Or(a=o3, b=o4, out=oo2); + Or(a=oo1, b=oo2, out=out); +}