diff options
author | Clifford Wolf <clifford@clifford.at> | 2018-07-17 20:04:49 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2018-07-17 20:04:49 +0200 |
commit | ddfc535df766a8d6091e6c043b74bb6a40c8d2b7 (patch) | |
tree | 427f283948362a06ae32416a09a92c77446722b0 /common/nextpnr.h | |
parent | 3ef85b30b461972d264d7e259eca25762356c16e (diff) | |
download | nextpnr-ddfc535df766a8d6091e6c043b74bb6a40c8d2b7.tar.gz nextpnr-ddfc535df766a8d6091e6c043b74bb6a40c8d2b7.tar.bz2 nextpnr-ddfc535df766a8d6091e6c043b74bb6a40c8d2b7.zip |
Add ArchNetInfo and ArchCellInfo
Signed-off-by: Clifford Wolf <clifford@clifford.at>
Diffstat (limited to 'common/nextpnr.h')
-rw-r--r-- | common/nextpnr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/nextpnr.h b/common/nextpnr.h index 50465869..3d0cc955 100644 --- a/common/nextpnr.h +++ b/common/nextpnr.h @@ -200,7 +200,7 @@ struct PipMap PlaceStrength strength = STRENGTH_NONE; }; -struct NetInfo +struct NetInfo : ArchNetInfo { IdString name; PortRef driver; @@ -225,7 +225,7 @@ struct PortInfo PortType type; }; -struct CellInfo +struct CellInfo : ArchCellInfo { IdString name, type; std::unordered_map<IdString, PortInfo> ports; |