Did a few more chips that I forgot about.
This commit is contained in:
@@ -15,4 +15,20 @@ CHIP Mux16 {
|
|||||||
|
|
||||||
PARTS:
|
PARTS:
|
||||||
// Put your code here:
|
// Put your code here:
|
||||||
|
Mux(a=a[0], b=b[0], sel=sel, out=out[0]);
|
||||||
|
Mux(a=a[1], b=b[1], sel=sel, out=out[1]);
|
||||||
|
Mux(a=a[2], b=b[2], sel=sel, out=out[2]);
|
||||||
|
Mux(a=a[3], b=b[3], sel=sel, out=out[3]);
|
||||||
|
Mux(a=a[4], b=b[4], sel=sel, out=out[4]);
|
||||||
|
Mux(a=a[5], b=b[5], sel=sel, out=out[5]);
|
||||||
|
Mux(a=a[6], b=b[6], sel=sel, out=out[6]);
|
||||||
|
Mux(a=a[7], b=b[7], sel=sel, out=out[7]);
|
||||||
|
Mux(a=a[8], b=b[8], sel=sel, out=out[8]);
|
||||||
|
Mux(a=a[9], b=b[9], sel=sel, out=out[9]);
|
||||||
|
Mux(a=a[10], b=b[10], sel=sel, out=out[10]);
|
||||||
|
Mux(a=a[11], b=b[11], sel=sel, out=out[11]);
|
||||||
|
Mux(a=a[12], b=b[12], sel=sel, out=out[12]);
|
||||||
|
Mux(a=a[13], b=b[13], sel=sel, out=out[13]);
|
||||||
|
Mux(a=a[14], b=b[14], sel=sel, out=out[14]);
|
||||||
|
Mux(a=a[15], b=b[15], sel=sel, out=out[15]);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,9 @@
|
|||||||
|
| a | b | sel | out |
|
||||||
|
| 0000000000000000 | 0000000000000000 | 0 | 0000000000000000 |
|
||||||
|
| 0000000000000000 | 0000000000000000 | 1 | 0000000000000000 |
|
||||||
|
| 0000000000000000 | 0001001000110100 | 0 | 0000000000000000 |
|
||||||
|
| 0000000000000000 | 0001001000110100 | 1 | 0001001000110100 |
|
||||||
|
| 1001100001110110 | 0000000000000000 | 0 | 1001100001110110 |
|
||||||
|
| 1001100001110110 | 0000000000000000 | 1 | 0000000000000000 |
|
||||||
|
| 1010101010101010 | 0101010101010101 | 0 | 1010101010101010 |
|
||||||
|
| 1010101010101010 | 0101010101010101 | 1 | 0101010101010101 |
|
||||||
@@ -14,4 +14,20 @@ CHIP Not16 {
|
|||||||
|
|
||||||
PARTS:
|
PARTS:
|
||||||
// Put your code here:
|
// Put your code here:
|
||||||
|
Not(in=in[0], out=out[0]);
|
||||||
|
Not(in=in[1], out=out[1]);
|
||||||
|
Not(in=in[2], out=out[2]);
|
||||||
|
Not(in=in[3], out=out[3]);
|
||||||
|
Not(in=in[4], out=out[4]);
|
||||||
|
Not(in=in[5], out=out[5]);
|
||||||
|
Not(in=in[6], out=out[6]);
|
||||||
|
Not(in=in[7], out=out[7]);
|
||||||
|
Not(in=in[8], out=out[8]);
|
||||||
|
Not(in=in[9], out=out[9]);
|
||||||
|
Not(in=in[10], out=out[10]);
|
||||||
|
Not(in=in[11], out=out[11]);
|
||||||
|
Not(in=in[12], out=out[12]);
|
||||||
|
Not(in=in[13], out=out[13]);
|
||||||
|
Not(in=in[14], out=out[14]);
|
||||||
|
Not(in=in[15], out=out[15]);
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
| in | out |
|
||||||
|
| 0000000000000000 | 1111111111111111 |
|
||||||
|
| 1111111111111111 | 0000000000000000 |
|
||||||
|
| 1010101010101010 | 0101010101010101 |
|
||||||
|
| 0011110011000011 | 1100001100111100 |
|
||||||
|
| 0001001000110100 | 1110110111001011 |
|
||||||
@@ -14,4 +14,20 @@ CHIP Or16 {
|
|||||||
|
|
||||||
PARTS:
|
PARTS:
|
||||||
// Put your code here:
|
// Put your code here:
|
||||||
|
Or(a=a[0], b=b[0], out=out[0]);
|
||||||
|
Or(a=a[1], b=b[1], out=out[1]);
|
||||||
|
Or(a=a[2], b=b[2], out=out[2]);
|
||||||
|
Or(a=a[3], b=b[3], out=out[3]);
|
||||||
|
Or(a=a[4], b=b[4], out=out[4]);
|
||||||
|
Or(a=a[5], b=b[5], out=out[5]);
|
||||||
|
Or(a=a[6], b=b[6], out=out[6]);
|
||||||
|
Or(a=a[7], b=b[7], out=out[7]);
|
||||||
|
Or(a=a[8], b=b[8], out=out[8]);
|
||||||
|
Or(a=a[9], b=b[9], out=out[9]);
|
||||||
|
Or(a=a[10], b=b[10], out=out[10]);
|
||||||
|
Or(a=a[11], b=b[11], out=out[11]);
|
||||||
|
Or(a=a[12], b=b[12], out=out[12]);
|
||||||
|
Or(a=a[13], b=b[13], out=out[13]);
|
||||||
|
Or(a=a[14], b=b[14], out=out[14]);
|
||||||
|
Or(a=a[15], b=b[15], out=out[15]);
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
| a | b | out |
|
||||||
|
| 0000000000000000 | 0000000000000000 | 0000000000000000 |
|
||||||
|
| 0000000000000000 | 1111111111111111 | 1111111111111111 |
|
||||||
|
| 1111111111111111 | 1111111111111111 | 1111111111111111 |
|
||||||
|
| 1010101010101010 | 0101010101010101 | 1111111111111111 |
|
||||||
|
| 0011110011000011 | 0000111111110000 | 0011111111110011 |
|
||||||
|
| 0001001000110100 | 1001100001110110 | 1001101001110110 |
|
||||||
@@ -14,4 +14,11 @@ CHIP Or8Way {
|
|||||||
|
|
||||||
PARTS:
|
PARTS:
|
||||||
// Put your code here:
|
// Put your code here:
|
||||||
|
Or(a=in[0], b=in[1], out=out1);
|
||||||
|
Or(a=in[2], b=in[3], out=out2);
|
||||||
|
Or(a=in[4], b=in[5], out=out3);
|
||||||
|
Or(a=in[6], b=in[7], out=out4);
|
||||||
|
Or(a=out1, b=out2, out=out5);
|
||||||
|
Or(a=out3, b=out4, out=out6);
|
||||||
|
Or(a=out5, b=out6, out=out);
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
| in | out |
|
||||||
|
| 00000000 | 0 |
|
||||||
|
| 11111111 | 1 |
|
||||||
|
| 00010000 | 1 |
|
||||||
|
| 00000001 | 1 |
|
||||||
|
| 00100110 | 1 |
|
||||||
Reference in New Issue
Block a user