removed the -nolatches option in run_fpga_flow script
This commit is contained in:
parent
bee788f6ab
commit
3691eb54b9
|
@ -489,7 +489,8 @@ def create_yosys_params():
|
||||||
|
|
||||||
if not args.verific:
|
if not args.verific:
|
||||||
ys_params["READ_VERILOG_FILE"] = " \n".join([
|
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])
|
for eachfile in args.benchmark_files])
|
||||||
else:
|
else:
|
||||||
if "ADD_INCLUDE_DIR" not in ys_params:
|
if "ADD_INCLUDE_DIR" not in ys_params:
|
||||||
|
|
Loading…
Reference in New Issue