diff options
author | gatecat <gatecat@ds0.me> | 2022-02-18 12:07:49 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-18 12:07:49 +0000 |
commit | 347ba3afb3f541edc594c8bc276cce481c7a7e03 (patch) | |
tree | 28483964fb3c92bc104ab6162d1c9196651ced26 /common/basectx.h | |
parent | 61d1db16be2c68cf6ae8b4d2ff3266b5c7086ad2 (diff) | |
parent | 6a32aca4ac8705b637943c236cedd2f36422fb21 (diff) | |
download | nextpnr-347ba3afb3f541edc594c8bc276cce481c7a7e03.tar.gz nextpnr-347ba3afb3f541edc594c8bc276cce481c7a7e03.tar.bz2 nextpnr-347ba3afb3f541edc594c8bc276cce481c7a7e03.zip |
Merge pull request #919 from YosysHQ/gatecat/netlist-iii
refactor: New member functions to replace design_utils
Diffstat (limited to 'common/basectx.h')
-rw-r--r-- | common/basectx.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/basectx.h b/common/basectx.h index 507f29cd..21d6d63a 100644 --- a/common/basectx.h +++ b/common/basectx.h @@ -226,6 +226,7 @@ struct BaseCtx void disconnectPort(IdString cell, IdString port); void ripupNet(IdString name); void lockNetRouting(IdString name); + void renameNet(IdString old_name, IdString new_name); CellInfo *createCell(IdString name, IdString type); void copyBelPorts(IdString cell, BelId bel); |