错误记录 – [Synth 8-2543] port connections cannot be mixed ordered and named

  • Post author:
  • Post category:其他


错误记录  – [Synth 8-2543] port connections cannot be mixed ordered and named

错误原因:最后一个端口括号后还有逗号(,)。

ModuleTest ModuleTest_Test
(
    .Port1 (Port1),
    .Port2 (Port2),
    .Port3 (Port3),
);

Port3 是最后一个端口,括号后不加“,”。

ModuleTest ModuleTest_Test
(
    .Port1 (Port1),
    .Port2 (Port2),
    .Port3 (Port3)     //.Port3	(Port3),  -> .Port3	(Port3)
);



版权声明:本文为hq1097原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。