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