From 27ec6173152c784a68ca9cb275f10beccc4d91e6 Mon Sep 17 00:00:00 2001 From: jsowash Date: Thu, 22 Aug 2019 09:34:53 -0700 Subject: [PATCH] Fixed M1.5 error in 8mux tests which came from pdriver. --- compiler/pgates/pand3.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/compiler/pgates/pand3.py b/compiler/pgates/pand3.py index fcca6672..22864e5a 100644 --- a/compiler/pgates/pand3.py +++ b/compiler/pgates/pand3.py @@ -36,8 +36,7 @@ class pand3(pgate.pgate): self.nand = factory.create(module_type="pnand3",height=self.height) self.add_mod(self.nand) - # Assume stage effort of 3 - self.inv = factory.create(module_type="pdriver", neg_polarity=True, fanout=3*self.size, height=self.height) + self.inv = factory.create(module_type="pinv", size=self.size, height=self.height) self.add_mod(self.inv) def create_layout(self):