summaryrefslogtreecommitdiff
path: root/src/python/m5/objects/AlphaTLB.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/python/m5/objects/AlphaTLB.py')
-rw-r--r--src/python/m5/objects/AlphaTLB.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/python/m5/objects/AlphaTLB.py b/src/python/m5/objects/AlphaTLB.py
deleted file mode 100644
index af7c04a84..000000000
--- a/src/python/m5/objects/AlphaTLB.py
+++ /dev/null
@@ -1,14 +0,0 @@
-from m5.SimObject import SimObject
-from m5.params 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