Skip to content

Commit

Permalink
Merge branch 'master' into qflow-1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
RTimothyEdwards committed Feb 25, 2021
2 parents 513a9a3 + 6185182 commit fd12bc0
Show file tree
Hide file tree
Showing 3 changed files with 171 additions and 92 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.4.92
1.4.93
4 changes: 2 additions & 2 deletions scripts/spi2xspice.py.in
Original file line number Diff line number Diff line change
Expand Up @@ -275,12 +275,12 @@ def read_spice(filein, fileout, celldefs, debug, modelfile, timing):

# If there is an include line, parse it and read the
# library cells from that include file.
imatch = increx.match(line)
imatch = increx.match(line) if not skipsub else []
if imatch:
read_spice_lib(imatch.group(1), celldefs, debug)
continue

xmatch = xrex.match(line)
xmatch = xrex.match(line) if not skipsub else []
if xmatch:
# Replace subcircuit call with xspice call
instname = xmatch.group(1)
Expand Down
Loading

0 comments on commit fd12bc0

Please sign in to comment.