mirror of
https://github.com/VLSIDA/OpenRAM.git
synced 2026-09-03 08:27:11 +02:00
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:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user