bank: Connect instances by their individual bl/br names

each module should be able to state how their bl/br lines are named. Here we
always connect port_data with the bitcell_array, so port_data needs function
that return the names of bl/br.

Signed-off-by: Bastian Koppelmann <[email protected]>
This commit is contained in:
Bastian Koppelmann
2020-02-12 15:00:50 +01:00
parent a23f72d5a3
commit 64bf93e4e5
3 changed files with 27 additions and 3 deletions
+6
View File
@@ -38,6 +38,12 @@ class precharge(design.design):
self.create_layout()
self.DRC_LVS()
def get_bl_names(self):
return "bl"
def get_br_names(self):
return "br"
def create_netlist(self):
self.add_pins()
self.add_ptx()