Skip to content

Commit

Permalink
Update Zero.scala
Browse files Browse the repository at this point in the history
Correct the minLatency for TLZero back to 1
  • Loading branch information
mwachs5 authored Dec 2, 2019
1 parent ab9798d commit bb06fbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/devices/tilelink/Zero.scala
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class TLZero(address: AddressSet, beatBytes: Int = 4)(implicit p: Parameters)
executable = true,
mayDenyGet = false,
mayDenyPut = false),
minLatency = 0,
minLatency = 1,
beatBytes = beatBytes,
device = new SimpleDevice("rom", Seq("ucbbar,cacheable-zero0"))) {
lazy val module = new LazyModuleImp(this) {
Expand Down

0 comments on commit bb06fbd

Please sign in to comment.