Forum Discussion
MEIYAN_L_Intel
Frequent Contributor
6 years agoHi,
I had found out that it might be due to the VHDL version used in Quartus.
For an example here:
In VHDL 2008:
comp_inst : comp
port map(
thing => "000" & sig
);
In VHDL 93:
tempsig <= "000" & sig;
comp_inst : comp
port map(
thing => tempsig
);
You may check your VHDL version in by clicking assignment >settings>VHDL input.
Thanks