Hello, everyone. I would like to use the pdk in a ...
# general
k
Hello, everyone. I would like to use the pdk in a undergraduate course to teach students analog circuit. I have git-cloned the pdk from Github and execute "make". However, I do not see any files in the directory "skywater-pdk/libraries/sky130_fd_sc_hd/latest". It's empty. Since I am a hardware guy and not familiar with the python env and makefile, there seems to be something wrong. Is there tutorial that shows how can I get the spice model, tech file, design rules, etc?
t
The cell libraries are in submodules that need to be checked out independently.
do
git submodule update --init libraries/sky130_fd_sc_hd/latest
k
It works. Thank you very much.
But there are only digital standard cells now. The primitive cells like nmos and pmos would be released later, am I right?
t
I think so. But you can already create parametric primitives directly in magic for instance.
👍 1
k
I will try this. Thanks a lot.
r
'make submodules' is a shortcut for the above
👍 1