From 689c4a3e19beb7f0ac4c3dd9f1dedc7d11e691bd Mon Sep 17 00:00:00 2001 From: ganeshgore Date: Wed, 15 Apr 2020 12:44:22 -0600 Subject: [PATCH] BugFix: The filename in the previous commit --- openfpga_flow/scripts/run_fpga_flow.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openfpga_flow/scripts/run_fpga_flow.py b/openfpga_flow/scripts/run_fpga_flow.py index 0d64f864d..cee4ec2ce 100644 --- a/openfpga_flow/scripts/run_fpga_flow.py +++ b/openfpga_flow/scripts/run_fpga_flow.py @@ -911,8 +911,8 @@ def run_netlists_verification(exit_if_fail=True): command = [cad_tools["iverilog_path"]] command += ["-o", compiled_file] - fpga_define_file = "./SRC/fpga_defines.v" - fpga_define_file_bk = "./SRC/fpga_defines.v.bak" + fpga_define_file = "./SRC/define_simulation.v" + fpga_define_file_bk = "./SRC/define_simulation.v.bak" shutil.copy(fpga_define_file, fpga_define_file_bk) with open(fpga_define_file, "r") as fp: fpga_defines = fp.readlines()