sense_amp: Allow custom pin names

we don't want to propagate the sense amp's bl/br names out of the
sense_amp_array. Thus the sense_amp_array gets them named as
"bl"/"br" again.

Signed-off-by: Bastian Koppelmann <[email protected]>
This commit is contained in:
Bastian Koppelmann
2020-02-17 15:20:12 +01:00
parent 680dc6d2c7
commit 76256a2f1b
3 changed files with 21 additions and 9 deletions
+2 -2
View File
@@ -34,11 +34,11 @@ class sense_amp_array(design.design):
self.create_layout()
def get_bl_name(self):
bl_name = self.amp.get_bl_names()
bl_name = "bl"
return bl_name
def get_br_name(self):
br_name = self.amp.get_br_names()
br_name = "br"
return br_name
@property