summaryrefslogtreecommitdiff
path: root/src/python/m5/objects/CoherenceProtocol.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/python/m5/objects/CoherenceProtocol.py')
-rw-r--r--src/python/m5/objects/CoherenceProtocol.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/python/m5/objects/CoherenceProtocol.py b/src/python/m5/objects/CoherenceProtocol.py
deleted file mode 100644
index 82adb6862..000000000
--- a/src/python/m5/objects/CoherenceProtocol.py
+++ /dev/null
@@ -1,8 +0,0 @@
-from m5.SimObject import SimObject
-from m5.params import *
-class Coherence(Enum): vals = ['uni', 'msi', 'mesi', 'mosi', 'moesi']
-
-class CoherenceProtocol(SimObject):
- type = 'CoherenceProtocol'
- do_upgrades = Param.Bool(True, "use upgrade transactions?")
- protocol = Param.Coherence("name of coherence protocol")