Skip to content

Commit

Permalink
Format code style
Browse files Browse the repository at this point in the history
  • Loading branch information
Emin017 committed Dec 22, 2024
1 parent e68c1ea commit 4ceb064
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/chisel3/util/MuxImpl.scala
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ object Mux1H {
* Returns the output of the Mux tree.
*/
object PriorityMux {
def apply[T <: Data](in: Seq[(Bool, T)]): T = SeqUtils.priorityMux(in)
def apply[T <: Data](in: Seq[(Bool, T)]): T = SeqUtils.priorityMux(in)
def apply[T <: Data](sel: Seq[Bool], in: Seq[T]): T = {
require(sel.size == in.size, "PriorityMux: Number of select signals and inputs must match")
apply(sel.zip(in))
Expand Down

0 comments on commit 4ceb064

Please sign in to comment.