Merge pull request #102 from lukefahr/blif_bug

Fixed blif formatting bug
This commit is contained in:
tangxifan 2020-10-06 20:05:02 -06:00 committed by GitHub
commit 7b12c28e4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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: