blob: af7c04a84eeda3951c015a97e1634ea68bc06ea3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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
|