Fixed M1.5 error in 8mux tests which came from pdriver.

This commit is contained in:
jsowash 2019-08-22 09:34:53 -07:00
parent 2ffdfb18a4
commit 27ec617315
1 changed files with 1 additions and 2 deletions

View File

@ -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):