How to delay signal for a given number of cycles in VHDL? Number of cycles is given as a generic.
任何其他备选办法
process(CLK) is
begin
if rising_edge(CLK) then
a_q <= a;
a_q_q <= a_q;
a_q_q_q <= a_q_q;
-- etc
end if;
end process;
?