Completed the Bit chip. Not great but after a month break from this I need to relearn how to work with the HDL language.

This commit is contained in:
2021-03-16 20:55:29 -05:00
parent 731818ea92
commit 00709e8dd7
2 changed files with 218 additions and 0 deletions
+3
View File
@@ -15,4 +15,7 @@ CHIP Bit {
PARTS:
// Put your code here:
Mux(a=FromDFF, b=in, sel=load, out=selected);
DFF(in=selected, out=FromDFF);
And(a=FromDFF, b=FromDFF, out=out);
}