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:
Nilay Vaish 2013-02-10 21:43:18 -06:00
parent cb7782f78d
commit 71c27e6370

View file

@ -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;
} }