From 3176ae9d50272185cfdc03e102f6b4e8ef73b5aa Mon Sep 17 00:00:00 2001 From: mrg Date: Wed, 3 Jul 2019 15:12:22 -0700 Subject: [PATCH] Fix pnand2 height in bank select. Unsure how it passed before. --- compiler/modules/bank_select.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/modules/bank_select.py b/compiler/modules/bank_select.py index 5a9609ac..296cef8b 100644 --- a/compiler/modules/bank_select.py +++ b/compiler/modules/bank_select.py @@ -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):