Skip to content

Commit

Permalink
ruby: MI protocol: add a missing transition
Browse files Browse the repository at this point in the history
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
  • Loading branch information
nilayvaish committed Feb 11, 2013
1 parent cb7782f commit 71c27e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mem/protocol/MI_example-cache.sm
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ machine(L1Cache, "MI Example L1 Cache")

// TRANSITIONS

transition({IS, IM, MI, II}, {Load, Ifetch, Store, Replacement}) {
transition({IS, IM, MI, II, MII}, {Load, Ifetch, Store, Replacement}) {
z_stall;
}

Expand Down

0 comments on commit 71c27e6

Please sign in to comment.