mirror of https://github.com/VLSIDA/OpenRAM.git
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:
parent
040340b49f
commit
af43fb6276
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue