mirror of https://github.com/VLSIDA/OpenRAM.git
Vertical gates need both well contacts.
This commit is contained in:
parent
4b526f0d5f
commit
a305d788d7
|
|
@ -32,7 +32,7 @@ class pand2(pgate.pgate):
|
|||
def create_modules(self):
|
||||
self.nand = factory.create(module_type="pnand2",
|
||||
height=self.height,
|
||||
add_wells=False)
|
||||
add_wells=self.vertical)
|
||||
|
||||
self.inv = factory.create(module_type="pdriver",
|
||||
size_list=[self.size],
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@ class pand3(pgate.pgate):
|
|||
# Shield the cap, but have at least a stage effort of 4
|
||||
self.nand = factory.create(module_type="pnand3",
|
||||
height=self.height,
|
||||
add_wells=False)
|
||||
add_wells=self.vertical)
|
||||
|
||||
# Add the well tap to the inverter because when stacked
|
||||
# vertically it is sometimes narrower
|
||||
|
|
|
|||
Loading…
Reference in New Issue