Forum Discussion
Altera_Forum
Honored Contributor
8 years agoIs your top level file in Verilog or VHDL? I have had this issue of design not fitting on the FPGA if I have a large number of buses (signals greater than 1 bit wide) as input or output ports. To overcome this, I exported the ports as Virtual pins in the QSF file (This is when I am doing unit level compilation, and pin assignments do not matter).
set_instance_assignment -name VITRUAL_PIN ON -to csi_clock_clk ( where csi_clock_clk is a port in the module) All ports are exported the same way.