diff options
author | Clifford Wolf <clifford@clifford.at> | 2018-07-21 13:38:44 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2018-07-21 13:38:44 +0200 |
commit | c5562429760b444133fcb2391236275b0c353670 (patch) | |
tree | 793e27d83495817924130220a889ffd23d91e7a3 /generic | |
parent | 09a68affa388ffafdf361ccd3de621173f2b8b48 (diff) | |
download | nextpnr-c5562429760b444133fcb2391236275b0c353670.tar.gz nextpnr-c5562429760b444133fcb2391236275b0c353670.tar.bz2 nextpnr-c5562429760b444133fcb2391236275b0c353670.zip |
Add getWireDelay API
Signed-off-by: Clifford Wolf <clifford@clifford.at>
Diffstat (limited to 'generic')
-rw-r--r-- | generic/arch.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/generic/arch.h b/generic/arch.h index ea4bb565..e1516569 100644 --- a/generic/arch.h +++ b/generic/arch.h @@ -157,6 +157,7 @@ struct Arch : BaseCtx bool checkWireAvail(WireId wire) const; IdString getBoundWireNet(WireId wire) const; IdString getConflictingWireNet(WireId wire) const; + DelayInfo getWireDelay(WireId wire) const { return DelayInfo(); } const std::vector<WireId> &getWires() const; PipId getPipByName(IdString name) const; |