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.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/python/m5/objects/AlphaTLB.py b/src/python/m5/objects/AlphaTLB.py
new file mode 100644
index 000000000..5edf8e13d
--- /dev/null
+++ b/src/python/m5/objects/AlphaTLB.py
@@ -0,0 +1,13 @@
+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