Forum Discussion
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"