removed the -nolatches option in run_fpga_flow script

This commit is contained in:
rakeshm 2021-12-16 20:33:40 -08:00
parent bee788f6ab
commit 3691eb54b9
1 changed files with 2 additions and 1 deletions

View File

@ -489,7 +489,8 @@ def create_yosys_params():
if not args.verific:
ys_params["READ_VERILOG_FILE"] = " \n".join([
"read_verilog -nolatches " + shlex.quote(eachfile)
#"read_verilog -nolatches " + shlex.quote(eachfile)
"read_verilog " + shlex.quote(eachfile)
for eachfile in args.benchmark_files])
else:
if "ADD_INCLUDE_DIR" not in ys_params: