nand2/01_Boolean_Logic/00_Nand/top.v

12 lines
145 B
Coq
Raw Permalink Normal View History

2023-01-11 10:13:09 +00:00
`default_nettype none
module top(
input BUT1,
input BUT2,
output LED1,
output LED2
);
Nand NAND(.a(BUT1),.b(BUT2),.out(LED1));
endmodule