mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-23 09:05:32 +00:00
Add specify parser
Signed-off-by: Clifford Wolf <clifford@clifford.at>
This commit is contained in:
parent
a7e11261bd
commit
3cc95fb4be
5 changed files with 254 additions and 34 deletions
|
@ -1194,6 +1194,16 @@ namespace {
|
|||
return;
|
||||
}
|
||||
|
||||
if (cell->type == "$specify2") {
|
||||
// FIXME
|
||||
return;
|
||||
}
|
||||
|
||||
if (cell->type == "$specify3") {
|
||||
// FIXME
|
||||
return;
|
||||
}
|
||||
|
||||
if (cell->type == "$_BUF_") { check_gate("AY"); return; }
|
||||
if (cell->type == "$_NOT_") { check_gate("AY"); return; }
|
||||
if (cell->type == "$_AND_") { check_gate("ABY"); return; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue