diff options
author | Clifford Wolf <clifford@clifford.at> | 2013-12-28 11:54:40 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2013-12-28 12:02:14 +0100 |
commit | c69c416d28015e496045d1b4529c465fbaad42e2 (patch) | |
tree | f70da346eabfcd5abfeee100a2470a4b50bea2ee /kernel/rtlil.h | |
parent | 7f717875999f18065a69934db2075fd1508d3a7d (diff) | |
download | yosys-c69c416d28015e496045d1b4529c465fbaad42e2.tar.gz yosys-c69c416d28015e496045d1b4529c465fbaad42e2.tar.bz2 yosys-c69c416d28015e496045d1b4529c465fbaad42e2.zip |
Added $bu0 cell (for easy correct $eq/$ne mapping)
Diffstat (limited to 'kernel/rtlil.h')
-rw-r--r-- | kernel/rtlil.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/rtlil.h b/kernel/rtlil.h index 91dd9d44c..8e3b78eef 100644 --- a/kernel/rtlil.h +++ b/kernel/rtlil.h @@ -187,6 +187,7 @@ namespace RTLIL RTLIL::Const const_pow (const RTLIL::Const &arg1, const RTLIL::Const &arg2, bool signed1, bool signed2, int result_len); RTLIL::Const const_pos (const RTLIL::Const &arg1, const RTLIL::Const &arg2, bool signed1, bool signed2, int result_len); + RTLIL::Const const_bu0 (const RTLIL::Const &arg1, const RTLIL::Const &arg2, bool signed1, bool signed2, int result_len); RTLIL::Const const_neg (const RTLIL::Const &arg1, const RTLIL::Const &arg2, bool signed1, bool signed2, int result_len); }; |