From 2069040fe498eb49c818611ac6c70591cb7f54c3 Mon Sep 17 00:00:00 2001 From: Aquiles Viza Date: Thu, 16 Nov 2023 14:18:09 -0300 Subject: [PATCH] Fixed typo on chipathon .bashrc --- stacks/chipathon-tools/scripts/.bashrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stacks/chipathon-tools/scripts/.bashrc b/stacks/chipathon-tools/scripts/.bashrc index 42ae0a1..4b3f687 100644 --- a/stacks/chipathon-tools/scripts/.bashrc +++ b/stacks/chipathon-tools/scripts/.bashrc @@ -6,11 +6,11 @@ if [ "$PDK" == "" ]; then echo "PDK not defined, using default one (gf180mcuD)" - PDK=gf180cmuD + PDK=gf180mcuD fi case "$PDK" in -gf180mcuC) export STD_CELL_LIBRARY=gf180mcu_fd_sc_mcu7t5v0 ;; +gf180mcuC) echo "gf180mcuC is not supported, only D variant [default one]" ;; gf180mcuD) export STD_CELL_LIBRARY=gf180mcu_fd_sc_mcu7t5v0 ;; sky130A) export STD_CELL_LIBRARY=sky130_fd_sc_hd ;; *) echo "PDK $PDK NOT RECOGNIZED";;