Archived
1
0
This repository has been archived on 2026-02-06. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2022-02-28 23:53:53 +01:00

8 lines
127 B
Verilog

module nand_gate(y, a, b);
input a, b;
output y;
wire tmpAnd;
and(tmpAnd, a, b);
not(y, tmpAnd);
endmodule