mirror of https://github.com/VLSIDA/OpenRAM.git
Poly overlap doesn't convert to tx device
This commit is contained in:
parent
d916322b74
commit
bc9cbe70a7
|
|
@ -111,7 +111,7 @@ class precharge(design.design):
|
||||||
vertical=True)
|
vertical=True)
|
||||||
|
|
||||||
# Hack for li layers
|
# Hack for li layers
|
||||||
if OPTS.tech_name == "s8":
|
if hasattr(self, "li_stack"):
|
||||||
self.add_via_center(layers=self.li_stack,
|
self.add_via_center(layers=self.li_stack,
|
||||||
offset=self.well_contact_pos)
|
offset=self.well_contact_pos)
|
||||||
|
|
||||||
|
|
@ -166,7 +166,7 @@ class precharge(design.design):
|
||||||
Connects the upper and lower pmos together
|
Connects the upper and lower pmos together
|
||||||
"""
|
"""
|
||||||
|
|
||||||
offset = self.lower_pmos_inst.get_pin("G").ll()
|
offset = self.lower_pmos_inst.get_pin("G").ul()
|
||||||
# connects the top and bottom pmos' gates together
|
# connects the top and bottom pmos' gates together
|
||||||
ylength = self.upper_pmos1_inst.get_pin("G").ll().y - offset.y
|
ylength = self.upper_pmos1_inst.get_pin("G").ll().y - offset.y
|
||||||
self.add_rect(layer="poly",
|
self.add_rect(layer="poly",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue