Altera_Forum
Honored Contributor
8 years agohelp with TOP I/O management
Hello,<br>
<br> I am student who recently got my hands on DE10-nano. Up until now I was always working with Artix-7, Xilinx board. What I am trying to do is to migrate some of my projects to Intel-Quartus. What I am now fighting is an assignments of TOP IO. In Vivado(overall Xilinx products) I had constraints, where there was a IO assignments available, so-called master.xdc files. Here I will post what I am used to work with and I would like to ask someone, if could tell me how to get the same result here in Quartus.<br> <br> library IEEE;<br> use IEEE.STD_LOGIC_1164.ALL;<br> use IEEE.STD_LOGIC_UNSIGNED.ALL;<br> use ieee.fixed_pkg.all;<br> <br> <br> entity TOP is<br> Port (<br> <br> <br> JA1 : out STD_LOGIC; -- pwm<br> btnL : in STD_LOGIC; --debouncerL for state_machine - reset<br> clk : in STD_LOGIC<br> );<br> end TOP;<br> <br> With this I can take oscilloscope and see the PWM if I connect it to JA1 pin.<br> <br> In quartus I can't find how to assign this output lets say to pin GPIO_0 D1, because I really don't know how to declare it.<br> Can anyone please tell me how does this work in quartus. I have never been working with it and I think I am stuck with the Vivado way of doing thing and can't comprehend how does it work here.<br> <br> Thank you.<br> IK