RELEASE 1.0

This commit is contained in:
Matt Guthaus
2016-11-08 09:57:35 -08:00
parent bdcebad086
commit f48272bde6
463 changed files with 122469 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
THIS DIRECTORY SHOULD ONLY CONTAIN SETUP SCRIPTS FOR TECHNOLOGIES.
These scripts will be called automatically by the import_tech functions in
globals.py in the compiler directory.
@@ -0,0 +1,34 @@
#!/usr/bin/python
"""
This type of setup script should be placed in the setup_scripts directory in
the trunk
"""
import sys
import os
TECHNOLOGY = "freepdk45"
LOCAL = "{0}/..".format(os.path.dirname(__file__))
##########################
# FreePDK 45 paths
# DON'T DELETE THESE
PDK_DIR="/mada/software/techfiles/FreePDK45"
os.environ["PDK_DIR"] = PDK_DIR
os.environ["SYSTEM_CDS_LIB_DIR"] = "{0}/ncsu_basekit/cdssetup".format(PDK_DIR)
os.environ["CDS_SITE"] = PDK_DIR
os.environ["MGC_TMPDIR"] = "/tmp"
###########################
#Openram Paths
# DON'T DELETE THESE
DRCLVS_HOME="/mada/software/techfiles/FreePDK45-1.4/ncsu_basekit/techfile/calibre"
os.environ["DRCLVS_HOME"] = DRCLVS_HOME
##########################
#Paths required for OPENRAM to function
sys.path.append("{0}/{1}".format(LOCAL,TECHNOLOGY))
@@ -0,0 +1,29 @@
#!/usr/bin/python
"""
This type of setup script should be placed in the setup_scripts directory in the trunk
"""
import sys
import os
TECHNOLOGY = "scn3me_subm"
##########################
# CDK paths?
#os.environ["CDK_DIR"] = CDK_DIR #PDK path
#os.environ["SYSTEM_CDS_LIB_DIR"] = "{0}/cdssetup".format(CDK_DIR) #CDS library path
#os.environ["CDS_SITE"] = CDK_DIR #CDS path
os.environ["MGC_TMPDIR"] = "/tmp" #temp folder path
###########################
#Openram Paths
# DON'T DELETE THIS LINE
DRCLVS_HOME="/mada/software/techfiles/scn3me_subm"
os.environ["DRCLVS_HOME"] = DRCLVS_HOME #DRC and LVS path
##########################
#Paths required for OPENRAM to function
LOCAL = "{0}/..".format(os.path.dirname(__file__)) #OPENRAM Trunk path
sys.path.append("{0}/{1}".format(LOCAL,TECHNOLOGY))