diff options
author | N. Engelhardt <nak@symbioticeda.com> | 2019-12-17 19:39:55 +0100 |
---|---|---|
committer | N. Engelhardt <nak@symbioticeda.com> | 2019-12-17 19:39:55 +0100 |
commit | c8bc1793a4e8230c29fca4a34862414e8ab8722b (patch) | |
tree | 7ac317aa29e1abc2433e9af0ac3379516ff97fe7 | |
parent | 91f427d7195caea16e116df7051bacd0da6212a6 (diff) | |
download | yosys-c8bc1793a4e8230c29fca4a34862414e8ab8722b.tar.gz yosys-c8bc1793a4e8230c29fca4a34862414e8ab8722b.tar.bz2 yosys-c8bc1793a4e8230c29fca4a34862414e8ab8722b.zip |
check scratchpad variable abc9.scriptfile
-rw-r--r-- | passes/techmap/abc9.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/passes/techmap/abc9.cc b/passes/techmap/abc9.cc index 7fd235d6e..96642de54 100644 --- a/passes/techmap/abc9.cc +++ b/passes/techmap/abc9.cc @@ -334,6 +334,8 @@ void abc9_module(RTLIL::Design *design, RTLIL::Module *current_module, std::stri abc9_script += stringf("source %s", script_file.c_str()); } else if (design->scratchpad.count("abc9.script")) { abc9_script += design->scratchpad_get_string("abc9.script"); + } else if (design->scratchpad.count("abc9.scriptfile")) { + abc9_script += stringf("source %s", design->scratchpad_get_string("abc9.scriptfile").c_str()); } else if (!lut_costs.empty() || !lut_file.empty()) { //bool all_luts_cost_same = true; //for (int this_cost : lut_costs) |