Intel® Quartus® Prime Software
Intel® Quartus® Prime Design Software, Design Entry, Synthesis, Simulation, Verification, Timing Analysis, System Design (Platform Designer, formerly Qsys)
16604 Discussions

How to add NEW counter Custom Qsys Components ?

Altera_Forum
Honored Contributor II
1,362 Views

Hello, i am a newbie, and having verilog counter code. I don`t know how to add "counter" as a NEW CUSTOM Qsys components? 

 

module counter_qsys ( 

out , // Output of the counter 

clk , // clock Input 

); 

input clk; 

output [7:0] out; 

reg [7:0] out=0;  

//-- Sensitive to rising edge 

always @(posedge clk) begin 

//-- Incrementar el registro 

out <= out+1; 

end 

endmodule 

 

In qsys, i have clicked NEW component, and i got one pop-window. But in block "out" port is missing. I dont whether i am doing right or wrong. Please anyone guide me.
0 Kudos
3 Replies
Altera_Forum
Honored Contributor II
371 Views

You have to go through the Component Editor and make your component Avalon compatible. See online training: 

 

https://www.altera.com/support/training/course/oqsys3000.html 

https://www.altera.com/support/training/catalog.html?coursetype=online&language=english&keywords=reusable
0 Kudos
Altera_Forum
Honored Contributor II
371 Views

 

--- Quote Start ---  

You have to go through the Component Editor and make your component Avalon compatible. See online training: 

 

https://www.altera.com/support/training/course/oqsys3000.html 

https://www.altera.com/support/training/catalog.html?coursetype=online&language=english&keywords=reusable 

--- Quote End ---  

 

 

Hi,  

 

I have followed that link. But i didnt see tutorial or any videos. That link page states about the course.
0 Kudos
Altera_Forum
Honored Contributor II
371 Views

You have to register for the training (Register Now link at the bottom).

0 Kudos
Reply