mirror of https://github.com/YosysHQ/nextpnr.git
Add Net/Cell "udata" field
Signed-off-by: Clifford Wolf <clifford@clifford.at>
This commit is contained in:
parent
d392b5f635
commit
609794f9e6
|
|
@ -203,6 +203,8 @@ struct PipMap
|
|||
struct NetInfo : ArchNetInfo
|
||||
{
|
||||
IdString name;
|
||||
int32_t udata;
|
||||
|
||||
PortRef driver;
|
||||
std::vector<PortRef> users;
|
||||
std::unordered_map<IdString, std::string> attrs;
|
||||
|
|
@ -228,6 +230,8 @@ struct PortInfo
|
|||
struct CellInfo : ArchCellInfo
|
||||
{
|
||||
IdString name, type;
|
||||
int32_t udata;
|
||||
|
||||
std::unordered_map<IdString, PortInfo> ports;
|
||||
std::unordered_map<IdString, std::string> attrs, params;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue