1
0

Fix IOMSHR to send finishes for stores

This commit is contained in:
Albert Ou 2016-04-30 22:20:29 -07:00
parent 491184a8f8
commit 0ff4fd0ccd

View File

@ -227,11 +227,9 @@ class IOMSHR(id: Int)(implicit p: Parameters) extends L1HellaCacheModule()(p) {
}
when (state === s_grant && io.grant.valid) {
state := s_resp
when (isRead(req.cmd)) {
grant_word := wordFromBeat(req.addr, io.grant.bits.data)
state := s_resp
} .otherwise {
state := s_idle
}
}