aboutsummaryrefslogtreecommitdiffstats
path: root/passes/techmap/abc.cc
diff options
context:
space:
mode:
authorN. Engelhardt <nak@symbioticeda.com>2019-12-13 12:54:52 +0100
committerN. Engelhardt <nak@symbioticeda.com>2019-12-13 12:54:52 +0100
commit91f427d7195caea16e116df7051bacd0da6212a6 (patch)
tree3e67d12bf7f1c33ce4c67c3dc6c89471cfb3dbc2 /passes/techmap/abc.cc
parent9ab1feeaf11adb6b675ac4034e246cb137d07db9 (diff)
downloadyosys-91f427d7195caea16e116df7051bacd0da6212a6.tar.gz
yosys-91f427d7195caea16e116df7051bacd0da6212a6.tar.bz2
yosys-91f427d7195caea16e116df7051bacd0da6212a6.zip
check scratchpad variables for custom abc scripts
Diffstat (limited to 'passes/techmap/abc.cc')
-rw-r--r--passes/techmap/abc.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/passes/techmap/abc.cc b/passes/techmap/abc.cc
index b29480e26..9b156a2af 100644
--- a/passes/techmap/abc.cc
+++ b/passes/techmap/abc.cc
@@ -732,6 +732,8 @@ void abc_module(RTLIL::Design *design, RTLIL::Module *current_module, std::strin
abc_script += script_file[i];
} else
abc_script += stringf("source %s", script_file.c_str());
+ } else if (design->scratchpad.count("abc.script")) {
+ abc_script += design->scratchpad_get_string("abc.script");
} else if (!lut_costs.empty()) {
bool all_luts_cost_same = true;
for (int this_cost : lut_costs)