Forum Discussion
Altera_Forum
Honored Contributor
16 years agoHello,
Me, I am used to have a copy of the output signal in these cases.
architecture ...
signal A0_out_s : std_logic;
begin
A0_out <= A0_out_s;
process(clkin)
begin
if rising_edge(clkin) then
if A0_out_s = '1' then
A0_out_s <= '0';
elsif A0 = '1' then
A0_out_s <= '1';
end if;
end if;
end process;
end architecture...;
Jérôme