modelsim仿真的时候,莫名奇妙的一个问题,解决方法:重新建立工程;
# ** Error: (vsim-3601) Iteration limit reached at time 540 ns.
------------------------------------------------------------------------------------------------------------
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