mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-12 20:18:20 +00:00
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)
|
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)
|
bool is_cxxrtl_blackbox_cell(const RTLIL::Cell *cell)
|
||||||
|
|
Loading…
Reference in a new issue