Skip to content

Commit

Permalink
Timer: revert maxcmp change from 8 back to 4 (#145)
Browse files Browse the repository at this point in the history
This broke tests in a larger repository.
This changed came in PR #141, but do not seem necessary.
  • Loading branch information
terpstra authored May 4, 2020
1 parent 9f68b5f commit 3491418
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/util/Timer.scala
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ trait GenericTimer {
protected def gang: Vec[Bool] = Vec.fill(ncmp){Bool(false)}
protected val scaleWidth = 4
protected val regWidth = 32
val maxcmp = 8
val maxcmp = 4
require(ncmp <= maxcmp)
require(ncmp > 0)

Expand Down

0 comments on commit 3491418

Please sign in to comment.