Skip to content

Commit

Permalink
Corrected the spi2xspice.py script for use with the sky130 PDK and
Browse files Browse the repository at this point in the history
any technology for which the liberty files have pin() records with
the pin name in quotes.
  • Loading branch information
RTimothyEdwards committed Nov 24, 2020
1 parent 631e8cf commit 95a1786
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.4.87
1.4.88
2 changes: 1 addition & 1 deletion scripts/spi2xspice.py.in
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def write_models(cellsused, celldefs, ofile, timing):

psubs = pstring
for j in range(0, nin):
bchar = cellrec['inputs'][nin - j - 1]
bchar = cellrec['inputs'][nin - j - 1].strip('"')
bval = binstring[j]
psubs = psubs.replace(bchar, bval)

Expand Down

0 comments on commit 95a1786

Please sign in to comment.