diff options
| author | John Ingalls | 2020-04-20 15:42:30 -0700 |
|---|---|---|
| committer | GitHub | 2020-04-20 22:42:30 +0000 |
| commit | 9f620e06bacc2882068adfd4972ec2e9a87ea723 (patch) | |
| tree | 04f21880b5f60bb5961b25e01bd2c6e2437a42b1 /src/main | |
| parent | cf03b0d1aaef4ad5ce44c7c43e3e82abb9f01128 (diff) | |
Mux1H: note results unspecified unless exactly one select signal is high (#1397)
Co-authored-by: Adam Izraelevitz <azidar@gmail.com>
Diffstat (limited to 'src/main')
| -rw-r--r-- | src/main/scala/chisel3/util/Mux.scala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/scala/chisel3/util/Mux.scala b/src/main/scala/chisel3/util/Mux.scala index b9a5f576..ea6bf6a1 100644 --- a/src/main/scala/chisel3/util/Mux.scala +++ b/src/main/scala/chisel3/util/Mux.scala @@ -19,7 +19,7 @@ import chisel3._ * )) * }}} * - * @note results undefined if multiple select signals are simultaneously high + * @note results unspecified unless exactly one select signal is high */ object Mux1H { def apply[T <: Data](sel: Seq[Bool], in: Seq[T]): T = |
