Forum Discussion
Altera_Forum
Honored Contributor
14 years agoSince your clocks are in phase then you can do this:
process begin wait until clk_2x = '1'; if clk_1x = '1' then data_out <= data1; else data_out <= data2; end of; end process;Since your clocks are in phase then you can do this:
process begin wait until clk_2x = '1'; if clk_1x = '1' then data_out <= data1; else data_out <= data2; end of; end process;