Added multiport bitcell support for storage node checks

This commit is contained in:
Hunter Nichols
2019-05-20 22:50:03 -07:00
parent 099bc4e258
commit d08181455c
5 changed files with 50 additions and 23 deletions
+6 -1
View File
@@ -197,7 +197,12 @@ class spice():
return True
return False
def do_nets_exist(self, nets):
"""For handmade cell, checks sp file contains the storage nodes."""
nets_match = True
for net in nets:
nets_match = nets_match and self.check_net_in_spice(net)
return nets_match
def contains(self, mod, modlist):
for x in modlist: