ruby: MI protocol: add a missing transition
The transition for state MII and event Store was found missing during testing. The transition is being added. The controller will not stall the Store request in state MII
This commit is contained in:
parent
cb7782f78d
commit
71c27e6370
1 changed files with 1 additions and 1 deletions
|
@ -413,7 +413,7 @@ machine(L1Cache, "MI Example L1 Cache")
|
||||||
|
|
||||||
// TRANSITIONS
|
// TRANSITIONS
|
||||||
|
|
||||||
transition({IS, IM, MI, II}, {Load, Ifetch, Store, Replacement}) {
|
transition({IS, IM, MI, II, MII}, {Load, Ifetch, Store, Replacement}) {
|
||||||
z_stall;
|
z_stall;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue