Forum Discussion
Altera_Forum
Honored Contributor
11 years ago --- Quote Start --- The assignment .... --- Quote End --- Josyb can you please try doing again test3 but now with using another variable t2 to store t1 before setting Yb?
process(clk)
variable t1 : std_logic;
variable t2 : std_logic;
begin
if rising_edge(clk) then
t1 := A and B;
t2 := t1;
Yb <= t1;
end if;
Y <= t2; -- does this attempt fail to export asynchronous t2?
end process;
Can you do this test and provide the RTL diagram again?