summaryrefslogtreecommitdiff
path: root/python/m5/objects/CoherenceProtocol.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/m5/objects/CoherenceProtocol.py')
-rw-r--r--python/m5/objects/CoherenceProtocol.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/python/m5/objects/CoherenceProtocol.py b/python/m5/objects/CoherenceProtocol.py
deleted file mode 100644
index 7013000d6..000000000
--- a/python/m5/objects/CoherenceProtocol.py
+++ /dev/null
@@ -1,7 +0,0 @@
-from m5 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")