You can describe a clock enable ( clken
) in the wait
statement together with the clock.
process begin
wait until rising_edge(clk) and clken = '1';
q <= d;
end process;
You can describe a clock enable ( clken
) in the wait
statement together with the clock.
process begin
wait until rising_edge(clk) and clken = '1';
q <= d;
end process;