forked from tanchou/Verilog
13 lines
183 B
Coq
13 lines
183 B
Coq
![]() |
module top (
|
||
|
input wire clk,
|
||
|
input wire btn1,
|
||
|
output wire [3:0] count
|
||
|
);
|
||
|
|
||
|
counter uut (
|
||
|
.clk(clk),
|
||
|
.btn1(btn1),
|
||
|
.count(count)
|
||
|
);
|
||
|
|
||
|
endmodule
|