mirror of https://github.com/VLSIDA/OpenRAM.git
FIX: scn3me_subm typo
Fixed incorrect tech_name "scn3m_subm" (correct is "scn3me_subm", note the 3mE).
This commit is contained in:
parent
189824429c
commit
5811c5ce99
|
|
@ -566,8 +566,8 @@ def import_tech():
|
|||
|
||||
# Validate tech_name param
|
||||
techname_lower = OPTS.tech_name.lower()
|
||||
if (techname_lower is None) or (techname_lower!="sky130" and techname_lower!="scn3m_subm" and techname_lower!="scn4m_subm" and techname_lower!="freepdk45") :
|
||||
debug.error("tech_name in config file should be sky130|scn3m_subm|scn4m_subm|freepdk45")
|
||||
if (techname_lower is None) or (techname_lower!="sky130" and techname_lower!="scn3me_subm" and techname_lower!="scn4m_subm" and techname_lower!="freepdk45") :
|
||||
debug.error("tech_name in config file should be sky130|scn3me_subm|scn4m_subm|freepdk45")
|
||||
quit()
|
||||
|
||||
# Import the tech
|
||||
|
|
|
|||
Loading…
Reference in New Issue