Skip to content

Commit

Permalink
fix(backend, BackendParams): fix wrong PregParams (#4225)
Browse files Browse the repository at this point in the history
  • Loading branch information
sashimi-yzh authored Jan 27, 2025
1 parent b1d7649 commit b837786
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/xiangshan/backend/BackendParams.scala
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ case class BackendParams(

def getFpWbArbiterParams: WbArbiterParams = {
val fpWbCfgs: Seq[FpWB] = allSchdParams.flatMap(_.getWbCfgs.flatten.flatten.filter(x => x.writeFp)).map(_.asInstanceOf[FpWB])
datapath.WbArbiterParams(fpWbCfgs, vfPregParams, this)
datapath.WbArbiterParams(fpWbCfgs, fpPregParams, this)
}

def getV0WbArbiterParams: WbArbiterParams = {
Expand Down

0 comments on commit b837786

Please sign in to comment.