Altera FPGA tutorial - LED blinking on DE1 Board using Verilog HDL

Altera FPGA tutorial - LED blinking on DE1 Board using Verilog HDL

doElectronics-doEmbedded

10 лет назад

9,918 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

@munazzailyas5741
@munazzailyas5741 - 01.09.2022 09:28

Pin selection on fpga?

Ответить
@iSeanx3
@iSeanx3 - 30.06.2020 16:12

here is the script.

module project_LED (in,out,clk);

input in,clk;
output reg out;
reg [22:0] count;

always @(posedge(clk))
begin
if(in==1)
begin
if (count == 0)
begin
out <= ~out;
end

count <= count + 1;

end

else

begin
out <= 0;
count <= 1;
end
end

endmodule

Ответить
@israthjahanchowdhury
@israthjahanchowdhury - 21.11.2016 10:06

was really helpful. thanks

Ответить
@snackentity5709
@snackentity5709 - 19.07.2015 04:03

thanks for this. i swear i learn more from these simple helloworld/blink led projects than from hours of scrolling through language tutorials

Ответить