aboutsummaryrefslogtreecommitdiff
path: root/projects/03/a/Bit.hdl
diff options
context:
space:
mode:
Diffstat (limited to 'projects/03/a/Bit.hdl')
-rw-r--r--projects/03/a/Bit.hdl3
1 files changed, 3 insertions, 0 deletions
diff --git a/projects/03/a/Bit.hdl b/projects/03/a/Bit.hdl
index 3064198..52e0539 100644
--- a/projects/03/a/Bit.hdl
+++ b/projects/03/a/Bit.hdl
@@ -15,4 +15,7 @@ CHIP Bit {
PARTS:
// Put your code here:
+ Mux (a=dffout, b=in, sel=load, out=muxout);
+ DFF (in=muxout, out=dffout);
+ Or (a=dffout, b=dffout, out=out);
}