Forum Discussion
Altera_Forum
Honored Contributor
16 years agoquartus 10 wont generate sof file
Hi everybody, I have a serious problem concerning generating sof file using Quartus 10. I am using a DE2 BOARD(CYCLONE EP2C35 ) and when I compile my project everything is fine, but it wont gen...
Altera_Forum
Honored Contributor
16 years agothank you for the information Kevin. Now I have downloaded the web edition and I am using a very simple project(below) to test out the compilation. But I have the same surprise as before. the sof file wont generate.
I ame using Windows xp 32 bit as OS, and I tried my project on C and D disk, in my project I assigned all IO with appropriate pin, but nothing... again thank you for you quick respond library ieee; use ieee.std_logic_1164.all; entity angate is port( SW1, SW2 : in std_logic; LED0: out std_logic ); end entity angate; architecture a of angate is begin LED0 <= SW1 and SW2; end architecture a;