nand2Tetris

This commit is contained in:
2024-12-01 13:42:54 +03:00
parent 0237c7bcb2
commit a69386c7b4
14 changed files with 274 additions and 17 deletions

View File

@ -3,7 +3,7 @@ module fulladdertb ();
reg r1, r2, r3;
wire w1, w2;
fullAdder uut(
FullAdder uut(
.A(r1),
.B(r2),
.Cin(r3),
@ -26,4 +26,4 @@ initial begin
$display(w2);
end
endmodule
endmodule