3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-07-15 03:35:40 +00:00

log forced

This commit is contained in:
Stan Lee 2026-07-07 14:48:21 -07:00
parent b146da984f
commit 3a1f4e00ca

View file

@ -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());
}
}
}