summaryrefslogtreecommitdiff
path: root/python/m5/objects/AlphaTLB.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/m5/objects/AlphaTLB.py')
-rw-r--r--python/m5/objects/AlphaTLB.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/python/m5/objects/AlphaTLB.py b/python/m5/objects/AlphaTLB.py
deleted file mode 100644
index 5edf8e13d..000000000
--- a/python/m5/objects/AlphaTLB.py
+++ /dev/null
@@ -1,13 +0,0 @@
-from m5 import *
-class AlphaTLB(SimObject):
- type = 'AlphaTLB'
- abstract = True
- size = Param.Int("TLB size")
-
-class AlphaDTB(AlphaTLB):
- type = 'AlphaDTB'
- size = 64
-
-class AlphaITB(AlphaTLB):
- type = 'AlphaITB'
- size = 48