Forum Discussion
Altera_Forum
Honored Contributor
14 years agoIt comes from using the VHDL Example template from Qsys - this has the ce, oe, we signals as vectors(0..0) but they aren't vectors in the Verilog module it generates. This means the two sets of signals don't connect. If you change the component declaration in your top-level file to have std_logic, rather than std_logic_vector then it all hooks up properly.
I found the answer somewhere else on this forum, but can't remember exactly where.