Forum Discussion
Altera_Forum
Honored Contributor
12 years agoIn this code there is no incomplete sensitivity list because the general description of a register is:
process(clk) begin if rising_edge(clk) = '1' then q_reg <= q_next; end if; end process; The process only activates on clk change ( when you change the input of flip-flop D, the output don't change until active clock edge). So you don't need q_next or equivalent expression in the sensitivity list.