Forum Discussion
Altera_Forum
Honored Contributor
19 years agode2_system_v1.5 --> tut_DE2_SDRam
Is there a bug in the sourcecode, which listed in the "tut_DE2_SDRam_vhdl.pdf"-file under ..\DE2_System_v1.5\DE2_tutorials ??? I copy and paste the code in my new project and become the f...
Altera_Forum
Honored Contributor
19 years agohttp://forum.niosforum.com/work2/style_emoticons/<#EMO_DIR#>/smile.gif
After many days of looking at SDRAM clock skew details, many trial and error runs (changing clock delays), the answer is below (VHDL coding errror).... My code now runs from SDRAM with ALTPLL of -3ns. How do we report this typo to Altera/Terasic? It's in both versions (1.4 and 1.5) of the documentation I've seen. -------------------------------------------------------------------------------- --- Quote Start --- originally posted by arrive@Jan 25 2007, 12:18 PM seems the assignment in vhdl is in the wrong direction. try
dram_ba_1 <= ba(1);
dram_ba_0 <= ba(0);
dram_udqm <= dqm(1);
dram_ldqm <= dqm(0);
instead of
ba <= (dram_ba_1 & dram_ba_0);
dqm <= (dram_udqm & dram_ldqm);
and it should work.
<div align='right'><{post_snapback}> (index.php?act=findpost&pid=20876)</div> --- Quote End ---