From 3691eb54b9a5165a9773a72685820827e4b59b11 Mon Sep 17 00:00:00 2001 From: rakeshm Date: Thu, 16 Dec 2021 20:33:40 -0800 Subject: [PATCH] removed the -nolatches option in run_fpga_flow script --- openfpga_flow/scripts/run_fpga_flow.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/openfpga_flow/scripts/run_fpga_flow.py b/openfpga_flow/scripts/run_fpga_flow.py index 08e33b0c7..bb44f2f40 100644 --- a/openfpga_flow/scripts/run_fpga_flow.py +++ b/openfpga_flow/scripts/run_fpga_flow.py @@ -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: