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