2020/04/16

ordered port connections cannot be mixed

XILINX   

vivadoで、エラーに苦労した。。。最初はそんなもんか。。。

で、このエラーの正体
ordered port connections cannot be mixed

pattern pattern(
    .test_rst_in    (test_rst_in),
    .test_vsync_out (test_vsync_out),
    .test_hsync_out (test_hsync_out),
    .test_de_out    (test_de_out),  //← この  , がダメらしい。
);

,が原因らしい。ordered portって何?とか、調べたけど、ぜんぜんわからず。

Prev:«

Next: »