Make cell/bitcell custom cell external accessible.

This commit is contained in:
mrg
2020-11-24 12:01:00 -08:00
parent cdcd115cec
commit 4e10f6d8a6
2 changed files with 17 additions and 45 deletions
+2 -2
View File
@@ -35,8 +35,8 @@ class row_cap_array(bitcell_base_array):
self.place_array("dummy_r{0}_c{1}", self.mirror)
self.add_layout_pins()
self.height = self.row_size * self.cell.height
self.width = self.dummy_cell.width
self.width = max([x.rx() for x in self.insts])
self.height = max([x.uy() for x in self.insts])
self.add_boundary()
self.DRC_LVS()