This commit is contained in:
Jesse Cirimelli-Low 2023-07-26 18:53:39 -07:00
parent dde4103d49
commit a6e07aa364
2 changed files with 0 additions and 22 deletions

View File

@ -57,20 +57,6 @@ class bitcell_array(bitcell_base_array):
""" Add the modules used in this design """
self.cell = factory.create(module_type=OPTS.bitcell)
# def create_instances(self):
# """ Create the module instances used in this design """
# self.cell_inst = {}
# for col in range(self.column_size):
# for row in range(self.row_size):
# name = "bit_r{0}_c{1}".format(row, col)
# self.cell_inst[row, col]=self.add_inst(name=name,
# mod=self.cell)
# self.connect_inst(self.get_bitcell_pins(row, col))
#
# # If it is a "core" cell, it could be trimmed for sim time
# if col>0 and col<self.column_size-1 and row>0 and row<self.row_size-1:
# self.trim_insts.add(name)
def create_instances(self):
self.cell_inst={}
core_block = [[0 for x in range(2)] for y in range(2)]

View File

@ -150,11 +150,3 @@ class pattern():
self.parent_design.width = place_x
self.parent_design.height = place_y
def connect_pins(self, array: design) -> None:
array.connect_isnt()