This error usually indicates that ModelSim is stuck in an infinite loop. In VHDL, this can happen when a signal is placed in the sensitivity list and this signal is changed in the process. The signal changes, triggering the process, which changes the signal, which again triggers the process and the cycle continues.
The following is a simple example of a process that causes an infinite loop:
PROCESS (count) BEGIN count <= not count; END PROCESS;
小梅哥 2015-1-12 10:51
用户1708715 2011-7-13 23:17