3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-23 00:55:32 +00:00
This commit is contained in:
Akash Levy 2024-06-13 15:33:17 -07:00
parent ac0a9e7366
commit 2337d97977

View file

@ -207,7 +207,7 @@ bool is_blackbox(Netlist *nl)
RTLIL::IdString VerificImporter::new_verific_id(Verific::DesignObj *obj)
{
std::string s = stringf("$%s", obj->Name());
std::string s = stringf("$%s$%d", obj->Name(), autoidx++);
return s;
}