diff options
author | Clifford Wolf <clifford@clifford.at> | 2019-04-21 21:58:57 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2019-04-23 21:36:59 +0200 |
commit | 3cc95fb4be27a3e130563db102ed268876027288 (patch) | |
tree | eafcc987754d29df8c5c5206a64082f7c12026f4 /kernel/rtlil.cc | |
parent | a7e11261bd4e72eb6d33d8c8496225fae36dde85 (diff) | |
download | yosys-3cc95fb4be27a3e130563db102ed268876027288.tar.gz yosys-3cc95fb4be27a3e130563db102ed268876027288.tar.bz2 yosys-3cc95fb4be27a3e130563db102ed268876027288.zip |
Add specify parser
Signed-off-by: Clifford Wolf <clifford@clifford.at>
Diffstat (limited to 'kernel/rtlil.cc')
-rw-r--r-- | kernel/rtlil.cc | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/kernel/rtlil.cc b/kernel/rtlil.cc index 7e1159cac..7d5334eb1 100644 --- a/kernel/rtlil.cc +++ b/kernel/rtlil.cc @@ -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; } |