summaryrefslogtreecommitdiff
path: root/python/m5/objects/AlphaTLB.mpy
diff options
context:
space:
mode:
Diffstat (limited to 'python/m5/objects/AlphaTLB.mpy')
-rw-r--r--python/m5/objects/AlphaTLB.mpy12
1 files changed, 12 insertions, 0 deletions
diff --git a/python/m5/objects/AlphaTLB.mpy b/python/m5/objects/AlphaTLB.mpy
new file mode 100644
index 000000000..8e7cd62cc
--- /dev/null
+++ b/python/m5/objects/AlphaTLB.mpy
@@ -0,0 +1,12 @@
+simobj AlphaTLB(SimObject):
+ type = 'AlphaTLB'
+ abstract = True
+ size = Param.Int("TLB size")
+
+simobj AlphaDTB(AlphaTLB):
+ type = 'AlphaDTB'
+ size = 64
+
+simobj AlphaITB(AlphaTLB):
+ type = 'AlphaITB'
+ size = 48