Altera_Forum
Honored Contributor
9 years agoBeMicro Max 10 Board - LED Blink Project Using Quartus Prime 16.0.0 Lite
Hello,
I am creating my first LED Blink project using the BeMicro Max 10 FPGA Kit. I am following an example from YouTube that uses a previous version of Quartus 15.0, and the code is written in Verilog. When I compile, I get this error: Error (12007): Top-level design entity "LEDBlink" is undefined. How do I define the top-level? NOTE: The project file is saved in Desktop\Blink\LEDBlink.qpf, and the verilog file is saved as Desktop\Blink\blink.v. Here is the verilog code... module blink(clk, LED); input clk; output LED; reg [31:0]count; assign LED = count[25]; always@(posedge clk) begin count <= count + 1; end endmodule Thanks! Dan