Forum Discussion
Altera_Forum
Honored Contributor
16 years ago --- Quote Start --- 3.If I use this type of program shown below,the action to the conctrol signal should happen in the next clock edge.,not the current edge,am I right? ...... 1:process(...) begin control<='0'...--reset control signal ......control<='1';--assign it somewhere in clock edge end process; 2:process(...)begin if rising_edge(clk) and control='1' then ...--action --- Quote End --- Yes, the action to the conctrol signal should happen in the next clock edge