Altera_Forum
Honored Contributor
11 years agoVHDL and process : several sensivity signals
Hi,
I have a problem with the following structure of process : process(clk, signal) begin if rising_edge(signal) then -- code1 end if; if rising_edge(clk) then -- code2 end if; end process; It seems that after SIGNAL = '1', the rising_edge(SIGNAL) is always true at each CLK'event, and I endlessly enter in the CODE1 part... I can't figure out what's wrong with that code ? Thank you for your help !