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

@ -0,0 +1,13 @@
module orGate (
input A_i,
input B_i,
output F_o
);
wire nand1_out, nand2_out;
nand nand1(nand1_out, A_i, A_i);
nand nand2(nand2_out, B_i, B_i);
nand nand3(F_o, nand1_out, nand2_out);
endmodule