diff options
author | Frederick Yin <fkfd@fkfd.me> | 2022-08-16 11:54:23 +0800 |
---|---|---|
committer | Frederick Yin <fkfd@fkfd.me> | 2022-08-16 11:54:23 +0800 |
commit | 9542deeb483a00b6fabed7574720926ce97d7511 (patch) | |
tree | 0f2c1f72c03dd4693fd59df67544d2a4dddc5494 /projects/01/Not16.hdl | |
parent | 9c0cb1d1c32724fc95ac9548e4f8d873d3adaccc (diff) |
Projects, 01-06 completed
Diffstat (limited to 'projects/01/Not16.hdl')
-rw-r--r-- | projects/01/Not16.hdl | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/projects/01/Not16.hdl b/projects/01/Not16.hdl new file mode 100644 index 0000000..3bf26a8 --- /dev/null +++ b/projects/01/Not16.hdl @@ -0,0 +1,33 @@ +// This file is part of www.nand2tetris.org
+// and the book "The Elements of Computing Systems"
+// by Nisan and Schocken, MIT Press.
+// File name: projects/01/Not16.hdl
+
+/**
+ * 16-bit Not:
+ * for i=0..15: out[i] = not in[i]
+ */
+
+CHIP Not16 {
+ IN in[16];
+ OUT out[16];
+
+ PARTS:
+ // 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]);
+}
|