summaryrefslogtreecommitdiff
path: root/projects/03/a/PC.hdl
diff options
context:
space:
mode:
Diffstat (limited to 'projects/03/a/PC.hdl')
-rw-r--r--projects/03/a/PC.hdl24
1 files changed, 24 insertions, 0 deletions
diff --git a/projects/03/a/PC.hdl b/projects/03/a/PC.hdl
new file mode 100644
index 0000000..0e44698
--- /dev/null
+++ b/projects/03/a/PC.hdl
@@ -0,0 +1,24 @@
+// 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/03/a/PC.hdl
+
+/**
+ * A 16-bit counter with load and reset control bits.
+ * if (reset[t] == 1) out[t+1] = 0
+ * else if (load[t] == 1) out[t+1] = in[t]
+ * else if (inc[t] == 1) out[t+1] = out[t] + 1 (integer addition)
+ * else out[t+1] = out[t]
+ */
+
+CHIP PC {
+ IN in[16],load,inc,reset;
+ OUT out[16];
+
+ PARTS:
+ Register(in=fb, load=true, out=reg, out=out);
+ Inc16(in=reg, out=reg1);
+ Mux16(a=reg, b=reg1, sel=inc, out=cnt);
+ Mux16(a=cnt, b=in, sel=load, out=cntin);
+ Mux16(a=cntin, b=false, sel=reset, out=fb);
+}