forked from tanchou/Verilog
struct
This commit is contained in:
14
Help/presentation_examples/blink/src/verilog/blink_top.v
Normal file
14
Help/presentation_examples/blink/src/verilog/blink_top.v
Normal file
@@ -0,0 +1,14 @@
|
||||
module blink_top
|
||||
(
|
||||
input wire clk,
|
||||
output wire led
|
||||
);
|
||||
|
||||
blink #(
|
||||
.CLK_SPEED(27_000_000)
|
||||
) blink_inst (
|
||||
.clk(clk),
|
||||
.led(led)
|
||||
);
|
||||
|
||||
endmodule
|
Reference in New Issue
Block a user