Add solutions for part 1
This commit is contained in:
23
projects/01/ManifoldNot16.hdl
Normal file
23
projects/01/ManifoldNot16.hdl
Normal file
@@ -0,0 +1,23 @@
|
||||
|
||||
CHIP ManifoldNot16 {
|
||||
IN in;
|
||||
OUT out[16];
|
||||
|
||||
PARTS:
|
||||
Not(in=in, out=out[0]);
|
||||
Not(in=in, out=out[1]);
|
||||
Not(in=in, out=out[2]);
|
||||
Not(in=in, out=out[3]);
|
||||
Not(in=in, out=out[4]);
|
||||
Not(in=in, out=out[5]);
|
||||
Not(in=in, out=out[6]);
|
||||
Not(in=in, out=out[7]);
|
||||
Not(in=in, out=out[8]);
|
||||
Not(in=in, out=out[9]);
|
||||
Not(in=in, out=out[10]);
|
||||
Not(in=in, out=out[11]);
|
||||
Not(in=in, out=out[12]);
|
||||
Not(in=in, out=out[13]);
|
||||
Not(in=in, out=out[14]);
|
||||
Not(in=in, out=out[15]);
|
||||
}
|
||||
Reference in New Issue
Block a user