aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/rtlil.h
diff options
context:
space:
mode:
authorJannis Harder <me@jix.one>2022-10-24 16:25:33 +0200
committerGitHub <noreply@github.com>2022-10-24 16:25:33 +0200
commit408fc60c95f88671e0d6c5624a10e147334edb4e (patch)
treeb07daa89e730a8d8b76152d1b3a6174229452257 /kernel/rtlil.h
parent3a37597e9f3cbcd69a28663933074c24d5c03feb (diff)
parentc77b7343d0412a009436a57764d907e2ae332da2 (diff)
downloadyosys-408fc60c95f88671e0d6c5624a10e147334edb4e.tar.gz
yosys-408fc60c95f88671e0d6c5624a10e147334edb4e.tar.bz2
yosys-408fc60c95f88671e0d6c5624a10e147334edb4e.zip
Merge pull request #3526 from jix/mux-simlib-eval
Consistent $mux undef handling
Diffstat (limited to 'kernel/rtlil.h')
-rw-r--r--kernel/rtlil.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/kernel/rtlil.h b/kernel/rtlil.h
index 27ffdff1f..755abf534 100644
--- a/kernel/rtlil.h
+++ b/kernel/rtlil.h
@@ -500,6 +500,8 @@ namespace RTLIL
RTLIL::Const const_pos (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);
+ RTLIL::Const const_mux (const RTLIL::Const &arg1, const RTLIL::Const &arg2, const RTLIL::Const &arg3);
+ RTLIL::Const const_pmux (const RTLIL::Const &arg1, const RTLIL::Const &arg2, const RTLIL::Const &arg3);
RTLIL::Const const_bmux (const RTLIL::Const &arg1, const RTLIL::Const &arg2);
RTLIL::Const const_demux (const RTLIL::Const &arg1, const RTLIL::Const &arg2);