Forum Discussion
Altera_Forum
Honored Contributor
12 years agoI found the problem. In the testbench you define the reset signal:
signal ResetN : std_logic; but doesn't have an initial value, so modify it: signal ResetN : std_logic := '1'; The circuit didn't receive a reset so the ff outputs had an undefined value. When you simulate you have to stop it manually. You use a assert false directive to stop it when it reaches a special condition.