Signed-off-by: James Cherry <cherry@parallaxsw.com>
This commit is contained in:
James Cherry 2026-03-07 16:41:25 -07:00
parent b5b0c66d12
commit ef924bb0b5
1 changed files with 4 additions and 1 deletions

View File

@ -638,13 +638,16 @@ InstancePinIterator *
pin_iterator() { return Sta::sta()->ensureLinked()->pinIterator(self); }
InstanceNetIterator *
net_iterator() { return Sta::sta()->ensureLinked()->netIterator(self); }
Pin *
find_pin(const char *name)
{
return Sta::sta()->ensureLinked()->findPin(self, name);
}
std::string
get_attribute(const char *key) {
get_attribute(const char *key)
{
return Sta::sta()->ensureLinked()->getAttribute(self, key);
}