Files
de0-zx-spectrum/spectrum.v
T
2022-03-30 11:53:01 +03:00

14 lines
176 B
Verilog

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