Forum Discussion
Altera_Forum
Honored Contributor
13 years agoI have synchronized my asynchronous power on reset.
(It is described on the following site.) --- Quote Start --- quartushelp.altera.com/12.1/master.htm#mergedProjects/verify/da/comp_file_rules_reset_external.htm?GSA_pos=7&WT.oss_r=1&WT.oss=syncronizing%20asynchronous%20reset --- Quote End ---
-- 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: --- Quote Start --- Warning: Node: TopFpga:TopFpga_inst|rstSync2 was determined to be a clock but was found without an associated clock assignment. --- Quote End --- does anybody know how to constrain the generated reset?