FpuPlugin.pending is now 6 bits
This commit is contained in:
parent
845cfcb966
commit
adc37b269c
|
@ -241,7 +241,7 @@ class FpuPlugin(externalFpu : Boolean = false,
|
|||
|
||||
|
||||
val csr = pipeline plug new Area{
|
||||
val pendings = Reg(UInt(5 bits)) init(0)
|
||||
val pendings = Reg(UInt(6 bits)) init(0)
|
||||
pendings := pendings + U(port.cmd.fire) - U(port.completion.fire) - U(port.rsp.fire)
|
||||
|
||||
val hasPending = pendings =/= 0
|
||||
|
|
Loading…
Reference in New Issue