Add Net/Cell "udata" field

Signed-off-by: Clifford Wolf <clifford@clifford.at>
This commit is contained in:
Clifford Wolf 2018-07-18 13:29:58 +02:00
parent d392b5f635
commit 609794f9e6

View File

@ -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;