Add licon option to precharge

This commit is contained in:
mrg
2020-04-01 11:26:45 -07:00
parent 3e41664db6
commit 7956b63d9f
2 changed files with 10 additions and 3 deletions
+4 -3
View File
@@ -73,11 +73,12 @@ class precharge_array(design.design):
def add_layout_pins(self):
en_bar_pin = self.pc_cell.get_pin("en_bar")
self.add_layout_pin(text="en_bar",
layer="m1",
offset=self.pc_cell.get_pin("en_bar").ll(),
layer=en_bar_pin.layer,
offset=en_bar_pin.ll(),
width=self.width,
height=drc("minwidth_m1"))
height=en_bar_pin.height())
for inst in self.local_insts:
self.copy_layout_pin(inst, "vdd")