called bitcell function before reading the height of the bitcell because pbitcell's dynamic height can only be determined after the module is called

This commit is contained in:
Michael Timothy Grimes 2018-08-15 02:19:36 -07:00
parent 040340b49f
commit af43fb6276
1 changed files with 2 additions and 1 deletions

View File

@ -14,7 +14,8 @@ class pnand3(pgate.pgate):
from importlib import reload
c = reload(__import__(OPTS.bitcell))
bitcell = getattr(c, OPTS.bitcell)
mod_bitcell = getattr(c, OPTS.bitcell)
bitcell = mod_bitcell()
unique_id = 1