Merge branch 'caravan-mpw9-PnR' of github.com:efabless/caravel into caravan-mpw9-PnR

This commit is contained in:
mo-hosni 2023-05-24 07:42:26 -07:00
commit e1fe816bcc
1 changed files with 2 additions and 2 deletions

View File

@ -458,7 +458,7 @@ if __name__ == '__main__':
if testmode:
print('Test only: Caravan top gate-level verilog:')
with open(caravel_path + '/verilog/gl/caravan.v', 'r') as ifile:
with open(caravel_path + '/verilog/gl/caravan_core.v', 'r') as ifile:
vlines = ifile.read().splitlines()
outlines = []
for vline in vlines:
@ -483,7 +483,7 @@ if __name__ == '__main__':
outlines.append(vline)
if not testmode:
with open(glpath + '/caravan.v', 'w') as ofile:
with open(glpath + '/caravan_core.v', 'w') as ofile:
for outline in outlines:
print(outline, file=ofile)