Forum Discussion
beepee
New Contributor
4 years agoHi, I experienced the same problem with the free SE version 10.4d, which does not need any special license.
My project is in VHDL, and this is what I had to change to get rid of the crash:
In some design unit there is an output bus using the generic e.g. BUSWIDTH
- Entity demo is (
- generic ( BUSWIDTH=8);
- ..
- );
- port (
- ..
- data_out: out (BUSWIDTH-1 downto 0) := (others => '0');
- ..
- ); end demo;
- architecture arch of demo is
- ..
- subblock_inst : subblock
- port map (
- data_out <= data_out(6-1 downto 0),
- ..
- );
- data_out(BUSWIDTH-1 downto 6) <= (others => '0');
- ..
- end arch;
Now something like this gave me the error 211 and closing after 10 seconds.
Removing the line 17 gave me an error message about unconnected IO.
Removing the default assignment in line 7 solved the problem in my case (removed ":= (others => '0')"
So it looks like the split bus assignments together with default assignments is problematic