1. 程式人生 > >錯誤記錄 - [Synth 8-2543] port connections cannot be mixed ordered and named

錯誤記錄 - [Synth 8-2543] port connections cannot be mixed ordered and named

錯誤記錄  - [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)
	);