Forum Discussion
Altera_Forum
Honored Contributor
19 years agoSeems 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.