nag123
Member level 1
Hi,
if i ANDing the clock with data, does it create any problems ?
example : clk1 = 60 Mhz and clk2 <= 120 mhz
if rising_edge (clk2)
data_out <= clk1 and Din;
end if;
Does the above one is a good way of coding style?
If not, could you suggest the alternate one?
if i ANDing the clock with data, does it create any problems ?
example : clk1 = 60 Mhz and clk2 <= 120 mhz
if rising_edge (clk2)
data_out <= clk1 and Din;
end if;
Does the above one is a good way of coding style?
If not, could you suggest the alternate one?