mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-04 16:44:08 +00:00
write_verilog: log_abort on unhandled $check flavor
This commit is contained in:
parent
2f11dc87c9
commit
0ab13924a5
|
@ -1059,6 +1059,8 @@ void dump_cell_expr_check(std::ostream &f, std::string indent, const RTLIL::Cell
|
|||
f << stringf("%s" "%s" "assume (eventually ", indent.c_str(), label.c_str());
|
||||
else if (flavor == "cover")
|
||||
f << stringf("%s" "%s" "cover (", indent.c_str(), label.c_str());
|
||||
else
|
||||
log_abort();
|
||||
dump_sigspec(f, cell->getPort(ID::A));
|
||||
f << stringf(");\n");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue