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

11 lines
168 B
Verilog

include "or_gate.v"
include "not_gate.v"
module nor_gate(y, a, b);
input a, b;
output y;
wire sel;
or_gate(a, b, sel);
not_gate(sel, y);
endmodule