port_data: Each submodule now specifies their bl/br names

before the names of bl/br from the bitcell were assumed. If we want to
allow renaming of bl/br from bitcells, we have to seperate the other
modules from that. Note, that we don't touch every occurence of bl/br,
but only the once necessary that pin renaming of the bitcell works.

Signed-off-by: Bastian Koppelmann <[email protected]>
This commit is contained in:
Bastian Koppelmann
2020-02-12 15:00:50 +01:00
parent 64bf93e4e5
commit f9babcf666
8 changed files with 112 additions and 16 deletions
@@ -31,6 +31,12 @@ class single_level_column_mux(pgate.pgate):
pgate.pgate.__init__(self, name)
def get_bl_names(self):
return "bl"
def get_br_names(self):
return "br"
def create_netlist(self):
self.add_modules()
self.add_pins()