PR from mithro + other changable GDS file names

This commit is contained in:
mrg
2020-11-02 16:00:16 -08:00
parent 1caecf5a69
commit fa89b73ef8
38 changed files with 275 additions and 330 deletions
+4 -2
View File
@@ -20,8 +20,10 @@ class design(hierarchy_design):
"""
def __init__(self, name):
super().__init__(name)
def __init__(self, name, cell_name=None):
if not cell_name:
cell_name = name
super().__init__(name, cell_name)
self.setup_multiport_constants()