Programmable Devices
CPLDs, FPGAs, SoC FPGAs, Configuration, and Transceivers
20637 Discussions

Qsys error:While creating NEW IP

Altera_Forum
Honored Contributor II
1,087 Views

Hi , I am trying to create a new component on Qsys using my verilog code in quartus. I am getting some errors [please look over the attachment], I don`t know how to fix it. Please guide me  

 

Verilog code 

module coun ( LED , // Output of the counter clk , // clock Input ); input clk; output reg LED; reg out=0; always @(posedge clk) begin out <= out + 1; LED=out; end endmodule 

 

I need step-step training please
0 Kudos
2 Replies
Altera_Forum
Honored Contributor II
386 Views

Hi, 

 

Image is not clear can you reattach the screen short of the error and interconnect in two image? 

 

Regards 

Anand
0 Kudos
Altera_Forum
Honored Contributor II
386 Views

Did you check out the training I highlighted here: https://alteraforum.com/forum/showthread.php?t=58107&p=236429&highlight=#post236429

0 Kudos
Reply