EDA_hg81
Advanced Member level 2
I have two processes running under the same clock domain.
I want to transfer data from process1 to process2.
How I can make sure data can be transferred reliably?
Thanks
Code:
Process1 ( refclk )
begin
if (rising_edge(refclk)) then
end if;
end process;
process2 ( refclk )
begin
if (falling_edge(refclk)) then
end if;
end process;
I want to transfer data from process1 to process2.
How I can make sure data can be transferred reliably?
Thanks