mirror of
https://github.com/YosysHQ/nextpnr.git
synced 2026-05-02 22:32:35 +00:00
Merge branch 'master' of gitlab.com:SymbioticEDA/nextpnr
This commit is contained in:
@@ -162,6 +162,22 @@ struct Router
|
||||
src_wires[src_wire] = 0;
|
||||
route(src_wires, dst_wire);
|
||||
routedOkay = visited.count(dst_wire);
|
||||
|
||||
if (ctx->verbose) {
|
||||
log("Route (from destination to source):\n");
|
||||
|
||||
WireId cursor = dst_wire;
|
||||
|
||||
while (1) {
|
||||
log(" %8.3f %s\n", ctx->getDelayNS(visited[cursor].delay),
|
||||
ctx->getWireName(cursor).c_str(ctx));
|
||||
|
||||
if (cursor == src_wire)
|
||||
break;
|
||||
|
||||
cursor = ctx->getPipSrcWire(visited[cursor].pip);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Router(Context *ctx, IdString net_name, bool ripup = false,
|
||||
|
||||
Reference in New Issue
Block a user