diff options
author | gatecat <gatecat@ds0.me> | 2023-01-18 16:28:33 +0100 |
---|---|---|
committer | gatecat <gatecat@ds0.me> | 2023-01-18 16:28:33 +0100 |
commit | 60793266334639144a9a5f8b7b0855c811ccd087 (patch) | |
tree | d3224d8cb266cc68eb46a15e4cc9426f3c704338 /common/kernel/context.h | |
parent | a46afc6ff8aca9a4b9275b3385bfec70f008e10b (diff) | |
download | nextpnr-60793266334639144a9a5f8b7b0855c811ccd087.tar.gz nextpnr-60793266334639144a9a5f8b7b0855c811ccd087.tar.bz2 nextpnr-60793266334639144a9a5f8b7b0855c811ccd087.zip |
context: Add getNetinfoRouteDelayQuad
Signed-off-by: gatecat <gatecat@ds0.me>
Diffstat (limited to 'common/kernel/context.h')
-rw-r--r-- | common/kernel/context.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/kernel/context.h b/common/kernel/context.h index 4a5667d0..b4e7920d 100644 --- a/common/kernel/context.h +++ b/common/kernel/context.h @@ -58,6 +58,7 @@ struct Context : Arch, DeterministicRNG size_t getNetinfoSinkWireCount(const NetInfo *net_info, const PortRef &sink) const; WireId getNetinfoSinkWire(const NetInfo *net_info, const PortRef &sink, size_t phys_idx) const; delay_t getNetinfoRouteDelay(const NetInfo *net_info, const PortRef &sink) const; + DelayQuad getNetinfoRouteDelayQuad(const NetInfo *net_info, const PortRef &sink) const; // provided by router1.cc bool checkRoutedDesign() const; |