[Script] Split rewrite yosys scripts into two runs because yosys cannot output consistent verilog files using 'design -reset'
This commit is contained in:
parent
d21909ad6c
commit
90a00da1df
|
@ -0,0 +1,4 @@
|
|||
# Rewrite the .blif to Verilog
|
||||
# so that the pin sequence matches
|
||||
read_blif rewritten_${OUTPUT_BLIF}
|
||||
write_verilog ${OUTPUT_VERILOG}
|
|
@ -20,11 +20,3 @@ synth -run check
|
|||
# Clean and output blif
|
||||
opt_clean -purge
|
||||
write_blif rewritten_${OUTPUT_BLIF}
|
||||
|
||||
# Clear all the designs
|
||||
design -reset
|
||||
|
||||
# Rewrite the .blif to Verilog
|
||||
# so that the pin sequence matches
|
||||
read_blif rewritten_${OUTPUT_BLIF}
|
||||
write_verilog ${OUTPUT_VERILOG}
|
||||
|
|
Loading…
Reference in New Issue