Initial import. Counter to leds

This commit is contained in:
2022-03-30 11:53:01 +03:00
commit fa29e9f3f6
107 changed files with 30393 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
module spectrum(
input CLOCK_50,
output reg[7:0] LED
);
reg[27:0] counter;
always @(posedge CLOCK_50)
begin
counter <= counter + 1;
LED <= counter[27:21];
end
endmodule