Forum Discussion
Altera_Forum
Honored Contributor
13 years ago --- Quote Start ---
signal cnt : unsigned(1 downto 0) := "00";
process(clk)
begin
if rising_edge(clk) then
store( to_integer(cnt) ) <= A(A'low);
cnt <= cnt + 1;
end if;
end process;
--- Quote End --- Hi Tricky, Thanks for give an idea. I will try the code. Many thanks