summaryrefslogtreecommitdiff
path: root/src/mem/protocol/MI_example.slicc
diff options
context:
space:
mode:
authorNathan Binkert <nate@binkert.org>2011-07-05 18:30:05 -0700
committerNathan Binkert <nate@binkert.org>2011-07-05 18:30:05 -0700
commitda1eaaca0ec7f65525dd2706f4b6b207bf9ee691 (patch)
treea31cf8470838a496894cfb9fb74b806895dfa555 /src/mem/protocol/MI_example.slicc
parent831e9b3b7a658663f5bffafef175d4f4a5615cfd (diff)
downloadgem5-da1eaaca0ec7f65525dd2706f4b6b207bf9ee691.tar.xz
slicc: add a protocol statement and an include statement
All protocols must specify their name The include statement allows any file to include another file.
Diffstat (limited to 'src/mem/protocol/MI_example.slicc')
-rw-r--r--src/mem/protocol/MI_example.slicc12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/mem/protocol/MI_example.slicc b/src/mem/protocol/MI_example.slicc
index 523668177..00508673b 100644
--- a/src/mem/protocol/MI_example.slicc
+++ b/src/mem/protocol/MI_example.slicc
@@ -1,5 +1,7 @@
-MI_example-msg.sm
-MI_example-cache.sm
-MI_example-dir.sm
-MI_example-dma.sm
-standard_1level_CMP-protocol.sm
+protocol "MI_example";
+include "RubySlicc_interfaces.slicc";
+include "MI_example-msg.sm";
+include "MI_example-cache.sm";
+include "MI_example-dir.sm";
+include "MI_example-dma.sm";
+include "standard_1level_CMP-protocol.sm";