1
0
forked from tanchou/Verilog
Files
Verilog_Louis/Help/presentation_examples/blink/src/verilog/blink_top.v

14 lines
156 B
Coq
Raw Normal View History

2025-05-02 15:51:18 +02:00
module blink_top
(
input wire clk,
output wire led
);
blink #(
.CLK_SPEED(27_000_000)
) blink_inst (
.clk(clk),
.led(led)
);
endmodule