mirror of
https://github.com/YosysHQ/yosys
synced 2025-07-24 13:18:56 +00:00
Add builtin celltype $scopeinfo
Only declares the cell interface, doesn't make anything use or understand $scopeinfo yet.
This commit is contained in:
parent
269c50f90e
commit
f728927307
4 changed files with 22 additions and 0 deletions
|
@ -1379,6 +1379,11 @@ bool SatGen::importCell(RTLIL::Cell *cell, int timestep)
|
|||
return true;
|
||||
}
|
||||
|
||||
if (cell->type == ID($scopeinfo))
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
// Unsupported internal cell types: $pow $fsm $mem*
|
||||
// .. and all sequential cells with asynchronous inputs
|
||||
return false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue