Forum Discussion
Altera_Forum
Honored Contributor
13 years ago --- Quote Start --- I have synchronized my asynchronous power on reset. (It is described on the following site.)
-- Reset einsynchronisieren und zugleich invertieren
process (TiClkout50_i, PowerResetn_i)
begin
if PowerResetn_i = '0' then
rstSync <= '1';
rstSync2 <= '1';
elsif rising_edge(TiClkout50_i) then
rstSync <= '0';
rstSync2 <= rstSync;
end if;
end process;
PowerReset <= rstSync2; Timequest is complaining that it is a clock: does anybody know how to constrain the generated reset? --- Quote End --- It must be you are (some where) using it as clock in a process edge rather than reset.