Move bitcells to their own directory in preparation for custom multiport cells.

This commit is contained in:
Matt Guthaus 2018-10-05 08:09:09 -07:00
parent c3cd76048b
commit 68b30d601e
3 changed files with 1 additions and 1 deletions

View File

@ -281,7 +281,7 @@ def setup_paths():
# Add all of the subdirs to the python path
# These subdirs are modules and don't need to be added: characterizer, verify
for subdir in ["gdsMill", "tests", "modules", "base", "pgates"]:
for subdir in ["gdsMill", "tests", "modules", "base", "pgates", "bitcells"]:
full_path = "{0}/{1}".format(OPENRAM_HOME,subdir)
debug.check(os.path.isdir(full_path),
"$OPENRAM_HOME/{0} does not exist: {1}".format(subdir,full_path))