Revert change. Add gnd pin to right on bitline load.

This commit is contained in:
Matt Guthaus
2018-07-19 13:26:12 -07:00
parent ea53066966
commit beee8229d1
2 changed files with 5 additions and 16 deletions
+2 -3
View File
@@ -80,10 +80,8 @@ class bitcell_array(design.design):
def add_layout_pins(self):
""" Add the layout pins """
row_list = self.cell.list_row_pins()
column_list = self.cell.list_column_pins()
offset = vector(0.0, 0.0)
for col in range(self.column_size):
for cell_column in column_list:
@@ -97,6 +95,7 @@ class bitcell_array(design.design):
# increments to the next column width
offset.x += self.cell.width
row_list = self.cell.list_row_pins()
offset.x = 0.0
for row in range(self.row_size):
for cell_row in row_list: