Forum Discussion
Altera_Forum
Honored Contributor
17 years agoError: top level design entity " " is undefined
we have problem in compiling VHDL code in Quartus II software. Every time we compile it shows the Error:top level design entity " file name" is undefined. We are even taking care of the case se...
Altera_Forum
Honored Contributor
14 years agoI solved this in Quartus II 11.0 by going Assignments > Settings > General and making my Top-level entity the name of my top level Verilog module (not its filename).
e.g. for a file named example.v module circuit (output f, input x,y,z); assign f=(x|(y&~z))&~(y&z); endmodule make the Top-level entity "circuit" not "example"