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 /ice40 | |
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 'ice40')
-rw-r--r-- | ice40/arch.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ice40/arch.h b/ice40/arch.h index beba2ccf..21169298 100644 --- a/ice40/arch.h +++ b/ice40/arch.h @@ -548,6 +548,12 @@ struct Arch : BaseCtx return wire_to_net[wire.index]; } + DelayInfo getWireDelay(WireId wire) const + { + DelayInfo delay; + return delay; + } + WireRange getWires() const { WireRange range; |