Complete project 3

This commit is contained in:
2024-11-29 20:50:34 +04:00
parent f6926762c1
commit c506581282
10 changed files with 200 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
// 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/3/a/Bit.hdl
/**
* 1-bit register:
* If load is asserted, the register's value is set to in;
* Otherwise, the register maintains its current value:
* if (load(t)) out(t+1) = in(t), else out(t+1) = out(t)
*/
CHIP Bit {
IN in, load;
OUT out;
PARTS:
Mux(a=r, b=in, sel=load, out=i);
DFF(in=i, out=r, out=out);
}