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 following error message: Error (10028): Can't resolve multiple constant drivers for net "BA[0]" at lights.vhd(46) Are the 2 Lines of vhdl-Code correct??BA <= (DRAM_BA_1 & DRAM_BA_0);
DQM <= (DRAM_UDQM & DRAM_LDQM); The Tutorial describes: <div class='quotetop'>QUOTE </div> --- Quote Start --- Observe that the two Bank Address signals are treated by the SOPC Builder as a two-bit vector called zs_ba_from_the_sdram[1:0], as seen in Figure 6. However, in the DE2_pin_assignments.csv file these signals are given as separate signals DRAM_BA_1 and DRAM_BA_0. Therefore, in our VHDL code, we concatenated these signals as (DRAM_BA_1 & DRAM_BA_0) to form a two-bit vector BA. Similarly, the vector zs_dqm_from_the_sdram[1:0] corresponds to the vectorDQMwhich is formed as (DRAM_UDQM& DRAM_LDQM).[/b] --- Quote End --- Please help me...