Skip to content

Commit

Permalink
bug fix: use N instead.
Browse files Browse the repository at this point in the history
  • Loading branch information
sequencer committed Feb 8, 2022
1 parent e05caca commit 57428c9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ object TruthTable {
val mergedTable = table.map {
// pad input signals if necessary
case (in, out) if inputWidth > in.width =>
(BitPat.dontCare(inputWidth - in.width) ## in, out)
(BitPat.N(inputWidth - in.width) ## in, out)
case (in, out) => (in, out)
}
.groupBy(_._1.toString)
Expand Down

0 comments on commit 57428c9

Please sign in to comment.