Skip to content

Commit

Permalink
Corrected a statement in the sky130 "check_density.py" script which
Browse files Browse the repository at this point in the history
accidentally failed to direct one output line to the Tcl file it
was generating.  Thanks to user mhommelga on github who posted this
issue to google/skywater-pdk (issue #432).
  • Loading branch information
RTimothyEdwards committed Oct 5, 2023
1 parent 6eb0902 commit dd15bdc
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.0.448
1.0.449
2 changes: 1 addition & 1 deletion sky130/custom/scripts/check_density.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def usage():

# NOTE: This assumes that the name of the GDS file is the name of the
# topmost cell (which should be passed as an option)
print('load ' + gdsroot)
print('load ' + gdsroot, file=ofile)
print('', file=ofile)

print('set midtime [orig_clock format [orig_clock seconds] -format "%D %T"]', file=ofile)
Expand Down

0 comments on commit dd15bdc

Please sign in to comment.