mirror of
https://github.com/YosysHQ/yosys
synced 2026-07-15 03:35:40 +00:00
log forced
This commit is contained in:
parent
b146da984f
commit
3a1f4e00ca
1 changed files with 4 additions and 1 deletions
|
|
@ -149,8 +149,11 @@ static void apply_force_ram_signals()
|
|||
continue;
|
||||
}
|
||||
// Add force_ram attribute if not already present
|
||||
if (!id->GetAttribute("force_ram"))
|
||||
if (!id->GetAttribute("force_ram")) {
|
||||
id->AddAttribute("force_ram", nullptr);
|
||||
log("Added force_ram attribute to signal '%s' in module '%s'.\n",
|
||||
signal_name.c_str(), module_name.c_str());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue