Forum Discussion
Altera_Forum
Honored Contributor
15 years agoI have no experience with SOPC. But maybe you can try this: edit the toplevel file generated by SOPC, assign intermediate signals to the ports of the ddr2 controller you want to double up and connect the intermediate signals further to the output pins. Something like this:
signal lcas_n : std logic
...
port map (
...
ddr2_cas_n => lcas_n ,
...
) ;
Cas1_n <= lcas_n ;
Cas2_n <= lcas_n ;