Forum Discussion
Altera_Forum
Honored Contributor
15 years agoHi Kurbanov,
I dont know if you found the solution, but I got the same problem and I solved it. The solution is changing the name of the pin assingments. ARCHITECTURE Structure OF teste1 IS COMPONENT nios_system PORT ( clk_0 : IN STD_LOGIC; reset_n : IN STD_LOGIC; out_port_from_the_LEDs : OUT STD_LOGIC_VECTOR (7 DOWNTO 0); in_port_to_the_Switches : IN STD_LOGIC_VECTOR (7 DOWNTO 0) ); END COMPONENT; BEGIN -- Instantiate the Nios II system entity generated by the SOPC Builder NiosII: nios_system PORT MAP (iCLK_50, iKEY(0), oLEDG, iSW); The file DE2_70_pin_assignments has assingnmented in a diferent way of the altera example, they use CLOCK_50 that is different of iCLK_50 and others... I hope it is usefull.