top.v has been added

This commit is contained in:
pavel 2026-08-07 19:10:07 +03:00
parent 7541a0439d
commit 3abb632cee

15
top.v Normal file
View File

@ -0,0 +1,15 @@
module top(
input wire CLOCK_50,
input wire [4:4] D_INP,
output wire WS2812_OUT
);
omdazz_WS2812b #(
.WS2812_NUM(10 - 1),
.CLK_FRE(50_000_000)
) u_ws2812 (
.CLOCK_50(CLOCK_50),
.WS2812 (WS2812_OUT)
);
endmodule