mirror of https://github.com/YosysHQ/yosys.git
cxxrtl: fix handling of parametric modules with large parameters.
These have a `$paramod$` prefix, not `$paramod\\`.
This commit is contained in:
parent
cf14e186eb
commit
3738391bdd
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue