Skip to content

Commit

Permalink
Corrected the staging_install.py script, where an incorrect
Browse files Browse the repository at this point in the history
conditional was causing symbolic links in sky130B to be made back
to the PDK source, NOT the sky130A PDK as it was supposed to be.
This change has a major impact on the sky130B PDK installation.
Also:  Added a missing line in the techfile for magic that
declares the parasitic plate capacitance for polysilicon over
isolated substrate areas.
  • Loading branch information
RTimothyEdwards committed Feb 22, 2022
1 parent e52981f commit ae8d0f9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.287
1.0.288
2 changes: 1 addition & 1 deletion common/staging_install.py
Original file line number Diff line number Diff line change
Expand Up @@ -539,7 +539,7 @@ def replace_all_with_symlinks(libdir, srclibdir, checklibdir):
# file "sources.txt" with the name of the source directories for each
# install directory.

if link_from not in ['source', None]:
if link_from == 'source':
print('Replacing files with symbolic links to source where possible.')
for refdir in refdirs:
if ef_format:
Expand Down
1 change: 1 addition & 0 deletions sky130/magic/sky130.tech
Original file line number Diff line number Diff line change
Expand Up @@ -5427,6 +5427,7 @@ defaultoverlap nwell well isosub dwell 120
# defaultperimeter allpolynonfet active 57

defaultsidewall *poly active 22.6
defaultoverlap *poly active dnwell,isosub dwell 55.27
defaultareacap *poly active nwell,obswell,pwell well 106.13
defaultperimeter *poly active nwell,obswell,pwell well 55.27
defaultsideoverlap *poly active nwell,obswell,pwell well 55.27
Expand Down

0 comments on commit ae8d0f9

Please sign in to comment.