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 May 5, 2024
2 parents 7a35edc + c270a66 commit 58f3433
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.4.102
1.4.103
8 changes: 8 additions & 0 deletions scripts/spi2xspice.py.in
Original file line number Diff line number Diff line change
Expand Up @@ -552,6 +552,14 @@ def read_spice(filein, fileout, celldefs, debug, modelfile, timing):
print('A' + instname + ' ' + outtext + ' dzero', file=ofile)
else:
print("Cell " + cellname + " has no inputs and no constant function.")
elif len(inlist) == 0 and len(outlist) != 0: #FIXME
#Multiple outputs with no inputs, it is a cell that is used to tie high or tie low
for idx,fcn in enumerate(cellrec['function']):
if fcn == '1':
print('A' + instname + str(idx) + ' ' + outlist[idx] + ' done', file=ofile)
elif fcn == '0':
print('A' + instname + str(idx) + ' ' + outlist[idx] + ' dzero', file=ofile)

elif len(outlist) == 1:
print('A' + instname + ' [' + intext + '] ' + outtext + ' d_lut_' + cellname, file=ofile)
elif len(outlist) != 0:
Expand Down
1 change: 1 addition & 0 deletions src/vesta.c
Original file line number Diff line number Diff line change
Expand Up @@ -3519,6 +3519,7 @@ find_clock_skews(ddataptr pathlist, char minmax)

clocklist = NULL;
clock2list = NULL;
srcdir = EDGE_UNKNOWN;

for (testddata = pathlist; testddata; testddata = testddata->next) {

Expand Down
2 changes: 1 addition & 1 deletion tech/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,6 @@ distclean:
done

uninstall:
@echo "Uninstalling built-in tech files
@echo "Uninstalling built-in tech files"
$(RM) -rf $(DESTDIR)${TECHINSTALL}

2 changes: 1 addition & 1 deletion tech/osu018/osu018.sh
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ set tielo="" ;# Cell to connect to ground, if one exists
set tielopin_out="" ;# Output pin name of tielo cell, if it exists

set separator="" ;# Separator between gate names and drive strengths
set techfile=SCN4M_SUBM.20 ;# magic techfile
set techfile=SCN6M_SUBM.10 ;# magic techfile
set magicrc=osu018.magicrc ;# magic startup script
set gdsfile=osu018_stdcells.gds2 ;# GDS database of standard cells

Expand Down

0 comments on commit 58f3433

Please sign in to comment.