-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPC.hdl
More file actions
25 lines (22 loc) · 796 Bytes
/
PC.hdl
File metadata and controls
25 lines (22 loc) · 796 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// 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:
// Put your code here:
Inc16(in=temp, out=incr);
Mux16(a=temp, b=incr, sel=inc, out=mux1res);
Mux16(a=mux1res, b=in, sel=load, out=mux2res);
Mux16(a=mux2res, b=false, sel=reset, out=mux3res);
Register(in=mux3res, load=true, out=out, out = temp);
}