Forum Discussion
Altera_Forum
Honored Contributor
10 years agoIf you want to wait until the the assignment of a signal, you can use:
wait on my_signal'transaction; So in this case it is every time a signal is assigned, even if it is from the same state, eg:
my_signal <= '1';
wait for 10 ns;
my_signal <= '1';
creates 2 'transactions.