This commit is contained in:
Akash Levy 2024-06-13 15:33:17 -07:00
parent ac0a9e7366
commit 2337d97977
1 changed files with 1 additions and 1 deletions

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;
}