Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions scripts/qflow_manager.py.in
Original file line number Diff line number Diff line change
Expand Up @@ -1367,16 +1367,15 @@ class QflowManager(ttk.Frame):
print('Diagnostic: tech load not trusted')

with open(ldir + '/qflow.magicrc', 'w') as ofile:
if tech_loaded == False:
print('Diagnostic: Inserting own tech load')
techfile = self.get_project_techfile()
if techfile:
print('tech load ' + techfile + ' -noprompt', file=ofile)

for line in rclines:
if 'tech load' in line:
if tech_loaded == True:
print(line, file=ofile)
else:
techfile = self.get_project_techfile()
print('Diagnostic: Inserting own tech load')
if techfile:
print('tech load ' + techfile + ' -noprompt', file=ofile)
else:
print(line, file=ofile)

Expand Down
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