cxxrtl: fix handling of parametric modules with large parameters.

These have a `$paramod$` prefix, not `$paramod\\`.
This commit is contained in:
whitequark 2020-04-24 05:44:39 +00:00
parent cf14e186eb
commit 3738391bdd
1 changed files with 1 additions and 1 deletions

View File

@ -212,7 +212,7 @@ bool is_ff_cell(RTLIL::IdString type)
bool is_internal_cell(RTLIL::IdString type)
{
return type[0] == '$' && !type.begins_with("$paramod\\");
return type[0] == '$' && !type.begins_with("$paramod");
}
bool is_cxxrtl_blackbox_cell(const RTLIL::Cell *cell)