mirror of
https://github.com/VLSIDA/OpenRAM.git
synced 2026-08-30 01:48:33 +02:00
write_driver: Allow custom pin names
we don't want to propagate the write driver bl/br names out of the write_driver_array. Thus the write_driver_array gets them named as "bl"/"br" again. Signed-off-by: Bastian Koppelmann <[email protected]>
This commit is contained in:
@@ -38,11 +38,11 @@ class write_driver_array(design.design):
|
||||
self.create_layout()
|
||||
|
||||
def get_bl_name(self):
|
||||
bl_name = self.driver.get_bl_names()
|
||||
bl_name = "bl"
|
||||
return bl_name
|
||||
|
||||
def get_br_name(self):
|
||||
br_name = self.driver.get_br_names()
|
||||
br_name = "br"
|
||||
return br_name
|
||||
|
||||
@property
|
||||
|
||||
Reference in New Issue
Block a user