Fixed blif formatting bug

This commit is contained in:
Andrew Lukefahr 2020-10-05 21:35:22 -04:00
parent 7a139c91a1
commit d68427e47b
1 changed files with 1 additions and 1 deletions

View File

@ -622,7 +622,7 @@ def run_vpr():
args.top_module,
args.top_module)
cmd += r"| sed 's/$/./' | fold -s -w80 "
cmd += r"| sed 's/[^.]$/ \\/' | sed 's/[.]$/ /'"
cmd += r"| sed 's/[^.]$/ \\/' | sed 's/[.]$//'"
cmd += " > %s.blif" % args.top_module
os.system(cmd)
if not args.fix_route_chan_width: