mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-21 13:23:40 +00:00
Added non-std verilog assume() statement
This commit is contained in:
parent
b005eedf36
commit
1f1deda888
10 changed files with 67 additions and 25 deletions
|
@ -47,7 +47,7 @@ void rmunused_module_cells(Module *module, bool verbose)
|
|||
if (bit.wire != nullptr)
|
||||
wire2driver[bit].insert(cell);
|
||||
}
|
||||
if (cell->type.in("$memwr", "$meminit", "$assert") || cell->has_keep_attr())
|
||||
if (cell->type.in("$memwr", "$meminit", "$assert", "$assume") || cell->has_keep_attr())
|
||||
queue.insert(cell);
|
||||
else
|
||||
unused.insert(cell);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue