forked from tanchou/Verilog
14 lines
156 B
Coq
14 lines
156 B
Coq
![]() |
module blink_top
|
||
|
(
|
||
|
input wire clk,
|
||
|
output wire led
|
||
|
);
|
||
|
|
||
|
blink #(
|
||
|
.CLK_SPEED(27_000_000)
|
||
|
) blink_inst (
|
||
|
.clk(clk),
|
||
|
.led(led)
|
||
|
);
|
||
|
|
||
|
endmodule
|