diff options
author | David Shah <dave@ds0.me> | 2019-11-13 12:11:17 +0000 |
---|---|---|
committer | David Shah <dave@ds0.me> | 2019-12-27 10:44:29 +0000 |
commit | 6aaa9f5a3d02224f2760d993d114163ce7678e1f (patch) | |
tree | 8397a723f1c4e225e12f1ff4808f218b5c9268f9 /common | |
parent | fffc3b844730d1241d0056f989b3a9492d62005c (diff) | |
download | nextpnr-6aaa9f5a3d02224f2760d993d114163ce7678e1f.tar.gz nextpnr-6aaa9f5a3d02224f2760d993d114163ce7678e1f.tar.bz2 nextpnr-6aaa9f5a3d02224f2760d993d114163ce7678e1f.zip |
frontend/base: Functions for port import
Signed-off-by: David Shah <dave@ds0.me>
Diffstat (limited to 'common')
-rw-r--r-- | common/nextpnr.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/common/nextpnr.h b/common/nextpnr.h index 24f6948b..3fce97a2 100644 --- a/common/nextpnr.h +++ b/common/nextpnr.h @@ -397,6 +397,8 @@ struct NetInfo : ArchNetInfo // wire -> uphill_pip std::unordered_map<WireId, PipMap> wires; + std::vector<IdString> aliases; // entries in net_aliases that point to this net + std::unique_ptr<ClockConstraint> clkconstr; TimingConstrObjectId tmg_id; |