From 1db9881ce78f7b36b31b96f9644f1f4b3657e8b2 Mon Sep 17 00:00:00 2001 From: mrg Date: Wed, 1 Mar 2023 09:26:16 -0800 Subject: [PATCH] Add sky130 corners to tech file. --- technology/sky130/tech/tech.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/technology/sky130/tech/tech.py b/technology/sky130/tech/tech.py index 945cbd5c..b3b39997 100755 --- a/technology/sky130/tech/tech.py +++ b/technology/sky130/tech/tech.py @@ -714,7 +714,11 @@ spice["ground"]="vssd1" # whether or not the device model is actually a subckt spice["device_prefix"] = "X" -spice["fet_libraries"] = {"TT": [[os.environ.get("SPICE_MODEL_DIR") + "/sky130.lib.spice", "tt"]]} +spice["fet_libraries"] = { "TT": [[os.environ.get("SPICE_MODEL_DIR") + "/sky130.lib.spice", "tt"]], + "SS": [[os.environ.get("SPICE_MODEL_DIR") + "/sky130.lib.spice", "ss"]], + "FF": [[os.environ.get("SPICE_MODEL_DIR") + "/sky130.lib.spice", "ff"]], + "SF": [[os.environ.get("SPICE_MODEL_DIR") + "/sky130.lib.spice", "sf"]], + "FS": [[os.environ.get("SPICE_MODEL_DIR") + "/sky130.lib.spice", "fs"]] } # spice stimulus related variables spice["feasible_period"] = 10 # estimated feasible period in ns