Altera_Forum
Honored Contributor
21 years agoAltera/Microtronix C12 Evaluation Kit questions
"hello_led" example worked fine, but when I tried to test a simple VHDL code without using SOPC and Nios II processor, it didn't work. The code simply try to toggle the LEDs by buttons or a counter
proc_1: process (clk, button, cnt) begin if rising_edge(CLK) then cnt <= cnt + 1; end if; user_led(2 downto 1) <= button(4 downto 3); user_led(10 downto 3) <= cnt(22 downto 15); I have checked pin assignments for buttons, leds and clk. I tried to down load the "sof" file using the USB cable and the "pof" file using a ByteBlaster cable. Downloads returned no error but the code won't run. What have I missed? Thanks for any suggestions.