3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-04-29 15:23:39 +00:00

Merge pull request #5759 from YosysHQ/lofty/abc9-refactor-4

abc9: remove abc9.if.C [sc-269]
This commit is contained in:
Lofty 2026-03-19 07:26:37 +00:00 committed by GitHub
commit 05de1c4ae2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 22 additions and 28 deletions

View file

@ -221,12 +221,6 @@ void abc9_module(RTLIL::Design *design, std::string script_file, std::string exe
for (size_t pos = abc9_script.find("{W}"); pos != std::string::npos; pos = abc9_script.find("{W}", pos))
abc9_script = abc9_script.substr(0, pos) + wire_delay + abc9_script.substr(pos+3);
std::string C;
if (design->scratchpad.count("abc9.if.C"))
C = "-C " + design->scratchpad_get_string("abc9.if.C");
for (size_t pos = abc9_script.find("{C}"); pos != std::string::npos; pos = abc9_script.find("{C}", pos))
abc9_script = abc9_script.substr(0, pos) + C + abc9_script.substr(pos+3);
std::string R;
if (design->scratchpad.count("abc9.if.R"))
R = "-R " + design->scratchpad_get_string("abc9.if.R");