aboutsummaryrefslogtreecommitdiffstats
path: root/ecp5
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2018-07-21 13:38:44 +0200
committerClifford Wolf <clifford@clifford.at>2018-07-21 13:38:44 +0200
commitc5562429760b444133fcb2391236275b0c353670 (patch)
tree793e27d83495817924130220a889ffd23d91e7a3 /ecp5
parent09a68affa388ffafdf361ccd3de621173f2b8b48 (diff)
downloadnextpnr-c5562429760b444133fcb2391236275b0c353670.tar.gz
nextpnr-c5562429760b444133fcb2391236275b0c353670.tar.bz2
nextpnr-c5562429760b444133fcb2391236275b0c353670.zip
Add getWireDelay API
Signed-off-by: Clifford Wolf <clifford@clifford.at>
Diffstat (limited to 'ecp5')
-rw-r--r--ecp5/arch.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/ecp5/arch.h b/ecp5/arch.h
index 944aedea..bf36ef2f 100644
--- a/ecp5/arch.h
+++ b/ecp5/arch.h
@@ -578,6 +578,12 @@ struct Arch : BaseCtx
return wire_to_net.at(wire);
}
+ DelayInfo getWireDelay(WireId wire) const
+ {
+ DelayInfo delay;
+ return delay;
+ }
+
WireRange getWires() const
{
WireRange range;