diff options
Diffstat (limited to 'python/m5/objects/AlphaTLB.py')
-rw-r--r-- | python/m5/objects/AlphaTLB.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/python/m5/objects/AlphaTLB.py b/python/m5/objects/AlphaTLB.py new file mode 100644 index 000000000..5edf8e13d --- /dev/null +++ b/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 |