From 5811c5ce99ab20c1979f9e2065005f9ad6a47bad Mon Sep 17 00:00:00 2001 From: Mik Igor <136681630+htm23x@users.noreply.github.com> Date: Fri, 27 Oct 2023 00:49:31 +0200 Subject: [PATCH] FIX: scn3me_subm typo Fixed incorrect tech_name "scn3m_subm" (correct is "scn3me_subm", note the 3mE). --- compiler/globals.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/globals.py b/compiler/globals.py index 0d7863e0..f30245d8 100644 --- a/compiler/globals.py +++ b/compiler/globals.py @@ -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