diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-10-03 10:12:28 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-10-03 10:12:28 +0200 |
commit | c3e779a65f285afa123b990f3a717a7ae8e028f5 (patch) | |
tree | 5a095488026f2371f1a13556478af7f5e7cd3b6c /kernel/rtlil.cc | |
parent | 600c6cb013b6cf872f3b3f01c7d88df2092e84d9 (diff) | |
download | yosys-c3e779a65f285afa123b990f3a717a7ae8e028f5.tar.gz yosys-c3e779a65f285afa123b990f3a717a7ae8e028f5.tar.bz2 yosys-c3e779a65f285afa123b990f3a717a7ae8e028f5.zip |
Added $_BUF_ cell type
Diffstat (limited to 'kernel/rtlil.cc')
-rw-r--r-- | kernel/rtlil.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/rtlil.cc b/kernel/rtlil.cc index 00be796f8..89132ea29 100644 --- a/kernel/rtlil.cc +++ b/kernel/rtlil.cc @@ -870,6 +870,7 @@ namespace { 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; } if (cell->type == "$_NAND_") { check_gate("ABY"); return; } |