You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add error check for duplicate pin location side specifications
Cases such as:
<pinlocations pattern="custom">
<loc side="left">clb.I clb.clk</loc>
<loc side="left">clb.O</loc>
</pinlocations>
are now treated as illegal, since pins are specified multiple times for
the 'left' side. Previously the last of the matching specifications
would overwrite the earlier specifications.
The correct format would be:
<pinlocations pattern="custom">
<loc side="left">clb.O clb.I clb.clk</loc>
</pinlocations>
0 commit comments