Programmable Devices
CPLDs, FPGAs, SoC FPGAs, Configuration, and Transceivers
Announcements
FPGA community forums and blogs on community.intel.com are migrating to the new Altera Community and are read-only. For urgent support needs during this transition, please visit the FPGA Design Resources page or contact an Altera Authorized Distributor.
21615 Discussions

Verilog HDL error : cannot connect instance ports both by order and by name

Altera_Forum
Honored Contributor II
12,995 Views
0 Kudos
3 Replies
Altera_Forum
Honored Contributor II
10,319 Views

you forgot the . infront of all port names.

0 Kudos
Altera_Forum
Honored Contributor II
10,319 Views

You're missing periods ('.') before some of your instantiated module's signal names. 

 

sdhc_conduit_end_SD_CLK (sdc_clk), 

 

should be 

 

.sdhc_conduit_end_SD_CLK (sdc_clk), 

 

Cheers, 

Alex
0 Kudos
Altera_Forum
Honored Contributor II
10,319 Views

Thanks that was exactly right !

0 Kudos
Reply