summaryrefslogtreecommitdiff
path: root/src/python/m5/objects/AlphaTLB.py
blob: 11c1792eedae01b8b3466dad1e5c2cc120c090fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
from m5.config 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