From 71c27e63703131d073cb6058c46dd9880de51061 Mon Sep 17 00:00:00 2001 From: Nilay Vaish Date: Sun, 10 Feb 2013 21:43:18 -0600 Subject: 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 --- src/mem/protocol/MI_example-cache.sm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mem/protocol/MI_example-cache.sm b/src/mem/protocol/MI_example-cache.sm index e62317efa..f0bd7b99e 100644 --- a/src/mem/protocol/MI_example-cache.sm +++ b/src/mem/protocol/MI_example-cache.sm @@ -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; } -- cgit v1.2.3