Altera_Forum
Honored Contributor
8 years agoSDRAM Usage for the DE1-Soc Board
Hi guys,
I want to save data in the SDRAM and afterwards to read out the data from the SDRAM. For my project, I used the Qsys and implemented the components afterwards in my VHDL code. When I check the results in the signal analyzer, I only got a value for the writedata operation. Could anybody help me? Does anybody know a good tutorial for the usage of the SDRAM? Thanks, Chris This is an extract of the source code --> architecture : process(CLK143) begin if rising_edge(CLK143) then SDRAM_WE_N<='1'; SDRAM_WRITEDATA<="1111111111111111"; SDRAM_RE_N<='1'; RAMIN1<=SDRAM_READDATA(7 downto 0); end if; end process;