Altera CPLD Max II Blink Led

4.0K21

Intro: Altera CPLD Max II Blink Led

Datasheet

-Materials:

-Leds

-Wires

For 1 Led, verilog code is:

module ledblink(clk,led);
input clk; output led; reg led;

reg[23:0] cnt;

always @(posedge clk) begin cnt<= cnt + 1'b1; led<=cnt[23];

end

endmodule

if you need more information about this tutorial, check my Blog

Comments

That is one compact FPGA!

I use altera too. I have the max 10, and the cyclone 2.