Fix pnand2 height in bank select. Unsure how it passed before.

This commit is contained in:
mrg 2019-07-03 15:12:22 -07:00
parent f914ab0ece
commit 3176ae9d50
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ class bank_select(design.design):
self.inv4x_nor = factory.create(module_type="pinv", height=height, size=4)
self.add_mod(self.inv4x_nor)
self.nand2 = factory.create(module_type="pnand2")
self.nand2 = factory.create(module_type="pnand2", height=height)
self.add_mod(self.nand2)
def calculate_module_offsets(self):