Altera_Forum
Honored Contributor
14 years agoSimple circuit wont compile - why?
I am using Quartus 2 Web edition and have a cyclone II board.
I am trying to run the first tutorial exercise and get errors with no reports. LIBRARY ieee ; USE ieee.std_logic_1164.all; ENTITY Light IS PORT (x1, x2: IN STD_LOGIC; f : OUT STD_LOGIC); END Light; ARCHITECTURE LogicFunction OF Light IS BEGIN f<= (x1 AND NOT x2) OR (NOT x1 AND x2); End LogicFunction; Error: Welcome to the Quartus II software. Thank you for choosing the# 1 software in performance and productivity. Error: Quartus II Full Compilation was unsuccessful. 1 error, 0 warnings Any Ideas???