mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-06 14:13:23 +00:00
Refactoring: Renamed RTLIL::Design::modules to modules_
This commit is contained in:
parent
d088854b47
commit
10e5791c5e
73 changed files with 223 additions and 223 deletions
|
@ -1055,7 +1055,7 @@ struct VerilogBackend : public Backend {
|
|||
extra_args(f, filename, args, argidx);
|
||||
|
||||
fprintf(f, "/* Generated by %s */\n", yosys_version_str);
|
||||
for (auto it = design->modules.begin(); it != design->modules.end(); it++) {
|
||||
for (auto it = design->modules_.begin(); it != design->modules_.end(); it++) {
|
||||
if (it->second->get_bool_attribute("\\blackbox") != blackboxes)
|
||||
continue;
|
||||
if (selected && !design->selected_whole_module(it->first)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue