Skip to content

Commit

Permalink
Fix typo in README.md (#1123)
Browse files Browse the repository at this point in the history
  • Loading branch information
hcook authored and edwardcwang committed Jul 16, 2019
1 parent ae740ca commit 8b85860
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class MovingAverage3(bitWidth: Int) extends Module {
})

val z1 = RegNext(io.in)
val z2 = RegNext(z0)
val z2 = RegNext(z1)

io.out := (io.in * 1.U) + (z1 * 1.U) + (z2 * 1.U)
}
Expand Down

0 comments on commit 8b85860

Please sign in to comment.