We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fd5624d + ae6ff17 commit 104082fCopy full SHA for 104082f
src/main/scala/bus/simplebus/Crossbar.scala
@@ -40,7 +40,7 @@ class SimpleBusCrossbar1toN(addressSpace: List[(Long, Long)]) extends Module {
40
val outSelResp = io.out(outSelIdxResp)
41
val reqInvalidAddr = io.in.req.valid && !outSelVec.asUInt.orR
42
43
- when(!(!io.in.req.valid || outSelVec.asUInt.orR) || !(!(io.in.req.valid && outSelVec.asUInt.andR))){
+ when((io.in.req.valid && !outSelVec.asUInt.orR) || (io.in.req.valid && outSelVec.asUInt.andR)){
44
Debug(){
45
printf("crossbar access bad addr %x, time %d\n", addr, GTimer())
46
}
0 commit comments