mirror of
https://github.com/YosysHQ/nextpnr.git
synced 2026-02-03 07:20:50 +00:00
interchange: Handle disconnected bel pins in dedicated interconnect
Signed-off-by: gatecat <gatecat@ds0.me>
This commit is contained in:
@@ -510,7 +510,7 @@ void DedicatedInterconnect::find_dedicated_interconnect()
|
||||
}
|
||||
|
||||
for (int i = 0; i < bel_data.num_bel_wires; ++i) {
|
||||
if (bel_data.types[i] != PORT_OUT) {
|
||||
if (bel_data.types[i] != PORT_OUT || bel_data.wires[i] == -1) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user