1
0

don't allow simultaneous reads and writes to the tag ram

This commit is contained in:
Andrew Waterman 2013-01-24 17:46:35 -08:00
parent 37ee843b2c
commit 1fbc20450e

View File

@ -601,7 +601,7 @@ class MetaDataArray(implicit conf: DCacheConfig) extends Component {
io.resp(w).tag := m
}
io.read.ready := !rst
io.read.ready := !rst && !io.write.valid // so really this could be a 6T RAM
io.write.ready := !rst
}