P
Patrick
Guest
Hi everybody,
I have a little problem with the synthesis of this process under Quartus...
Quartus say that this clock (clk_baud) may have ripple...
Perhaps it's due to the Not function ?
It's just a divide per 2 from the "clk_gene" clock
GEN_CLOCK_BAUD : process (clk_gene,init)
begin
if init = '1' then
ck_baud <= '0';
elsif (clk_gene'event and clk_gene='1') then
ck_baud <= not ck_baud;
end if;
end process GEN_CLOCK_BAUD;
clk_baud <= ck_baud;
I have a little problem with the synthesis of this process under Quartus...
Quartus say that this clock (clk_baud) may have ripple...
Perhaps it's due to the Not function ?
It's just a divide per 2 from the "clk_gene" clock
GEN_CLOCK_BAUD : process (clk_gene,init)
begin
if init = '1' then
ck_baud <= '0';
elsif (clk_gene'event and clk_gene='1') then
ck_baud <= not ck_baud;
end if;
end process GEN_CLOCK_BAUD;
clk_baud <= ck_baud;