diff options
author | Eddie Hung <eddie.hung+gitlab@gmail.com> | 2018-07-21 19:04:14 +0000 |
---|---|---|
committer | Eddie Hung <eddie.hung+gitlab@gmail.com> | 2018-07-21 19:04:14 +0000 |
commit | dfdeb21690181044a95c2b2d64c197c999507b0c (patch) | |
tree | a7c74ddc6c085830880ceffdb9f15d8c84afc3fe /ecp5/arch.h | |
parent | 6e7ba2a2be87bb1e0f323128283a87f59af596b7 (diff) | |
parent | f438fc615b829170679971110b5d1bb57fba6a86 (diff) | |
download | nextpnr-dfdeb21690181044a95c2b2d64c197c999507b0c.tar.gz nextpnr-dfdeb21690181044a95c2b2d64c197c999507b0c.tar.bz2 nextpnr-dfdeb21690181044a95c2b2d64c197c999507b0c.zip |
Merge branch 'master' into 'master'
Master
See merge request eddiehung/nextpnr!6
Diffstat (limited to 'ecp5/arch.h')
-rw-r--r-- | ecp5/arch.h | 6 |
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; |