Forum Discussion
Altera_Forum
Honored Contributor
11 years agoOK it IS an altsyncram.
The tstep signal is generated like that: process(clk, tckup)
begin
if rising_edge(clk) then
if (tckup='1') then
wen <= '1';
if tstep<25000 then
tstep <= tstep+1;
end if;
else
wen <= '0';
end if;
end if;
end process; --- Quote Start --- Better than what? You asked how you can initialize it from file. --- Quote End --- Better than a .hex file?